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 would like to achieve is the ability to include this information into xml output structure I receive as a result of marshaling. I’ve included exception collection section into my xsd and now I can instantiate the corresponding exception object once an exception is encountered. The question is how do I attach this object to the rest of my JAXB generated Java objects structure considering the fact that marshaling process had already started? Is it even possible? Or should I try and modify the xml result after the marshaling is done? Any advice would be highly appreciated. Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There a couple of ways to do this: Option #1 - Add an "exceptions" Property to You Root Object
Option #2 - Use an XMLStreamWriter
|
|||||||||||
|
|
Short answer: no. JAXB is intended to take an object graph and produce XML. it's not intended to do this. Longer answer: You could inject the exception representation into the graph after JAXB is done the first time. Even longer answer: There are a number of plugin and customization technologies for JAX-B, and it's possible that you could use one of them. However, it's very hard to conceptualize this at the abstract level of your question. |
|||
|
|