Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

You can also use XSLT to transform one form of XML to other.

share|improve this answer
My problem is to modify the existing xml a bit and covert the rest into json format. Could you please give some details on how to do this? – Surya Oct 17 '11 at 6:32

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:

share|improve this answer

JAXP might be a better option in this case if you need to transform the XML.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.