In my server code, I receive an xml response. I need to modify that xml response and send it to the client either in xml or in json. I know it can be achieved by parsing the xml and removing some tags and so on. But I need to do it without parsing. How can I use JAXB to achieve the result? Any other solution without JAXB is also highly appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can also use XSLT to transform one form of XML to other. |
|||
|
|
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB 2 (JSR-222) expert group. The MOXy implementation of JAXB allows you to apply multiple mappings to your domain model. One can be done through annotations, and multiple can be done using the external binding document. In the example below I map one object model to different XML documents representing weather information from both Google and Yahoo: |
|||
|
|