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

Currently in the application we get a SOAP response xml with namespace attached to each element. I have hard coded into my code that the namespaces are ignored because the application wants clean xml. But upon testing it is being deemed a weak solution because the namespace might change in the future. It has been recommended to me to use jaxb. I am using xtream currently because we can directly read xml. So I have started looking into jaxb. But jaxb requires xsd. I have understood the process but I am not sure how to implement Jaxb in my application because I am getting an xml response. So, my question Is it possible to replace xtream with jaxb in this situation?
thanks

share|improve this question
Also can i use xslt for removing namespaces? – mjamal14 Dec 3 '11 at 19:15
1  
"but jaxb requires xsd" - incorrect, it requires no such thing. You may want to do a bit more background reading, your assumptions are a bit off. – skaffman Dec 3 '11 at 19:17
@skaffman Can u elaborate a little more?coz i am new to jaxb and from wat i have seen conversion from xml to java objects requires xsd to run the xjc binding compiler. – mjamal14 Dec 3 '11 at 20:43
You may find the following article helpful. It maps the same objects to XML using both JAXB and XStream: blog.bdoughan.com/2010/10/how-does-jaxb-compare-to-xstream.html – Blaise Doughan Dec 3 '11 at 21:07
1  
Wow,that was exactly what i needed.Thanks a lot man. – mjamal14 Dec 4 '11 at 10:34

1 Answer

up vote 1 down vote accepted

Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB 2 (JSR-222) expert group.

I am using xtream currently because we can directly read xml. So I have started looking into jaxb. But jaxb requires xsd.

It is a common misconception that JAXB requires an XML schema (it's even on the XStream FAQ). The truth is that JAXB was designed to start from objects and provides an option to generate annotated object models from an XML schema(s). This is very useful when dealing with large XML schemas:

Currently in the application we get a SOAP response xml with namespace attached to each element. I have hard coded into my code that the namespaces are ignored because the application wants clean xml. But upon testing it is being deemed a weak solution because the namespace might change in the future.

JAXB has very good support for mapping namespaces. This can be done at the package level with @XmlSchema, the class level with @XmlType, or the field/property level with @XmlAttribute/@XmlElement:

I have understood the process but I am not sure how to implement Jaxb in my application because I am getting an xml response

Below is a link to an article that maps the same object model to the same XML document using both JAXB and XStream. It will give you a feel for how some of the concepts relate:

Another thing note is that JAXB refers to a standard (JSR-222) and not a specific implementation. There are actually several implementations including:

  • EclipseLink MOXy
  • Metro (the reference implementation)
  • Apache JaxMe
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.