I'm trying to use a solution for serializing exceptions using jaxb. (http://forums.java.net/jive/thread.jspa?messageID=256122)
The class I need to implement for that solution requires referencing the following com.sun classes.
I got the folowing error while parsing the XSD to Java Object
Exception in thread "main"
java.lang.IllegalArgumentException:
Expected class ja
vax.xml.bind.annotation.XmlAccessType
but found class
javax.xml.bind.annotation. ...
Is there a way to make a class generated by jaxb-xjc Throwable? I haven't found a way to do it in the binding file. If a schema defines an "Exception" type ...
When a generate my code with wsimport using a .net wsdl I've got extreme long exception classes like [servicename][operationname]FaultFaultFaultMessage.
I know how to rename each single exception but can I use a ...
I am trying to deal with these exception. For example when a user, loads an invalid XML file, then SAXParseException is thrown and he is asked to load another file.
it seems ...
I have a very basic application that uses JAXB marshaller to validate input information against an xsd schema. I register a validation event handler to obtain information about the exceptions. What ...
I want to know which kind of exceptions can be thrown by this code so i can catch them instead of just catching the generic exception (trying to reproduce errors to ...