| Author |
Unable to unmarshall the webservice response
|
Kumar Raja
Ranch Hand
Joined: Mar 18, 2010
Posts: 457
|
|
Hi All,
We have a schema similar to what given below
and let us assume that the above definition is in main.xsd with namespace http://example.com/main/ and simpleInfo:simpleResponse_Type is defined in some other xsd called import.xsd with the namespace http://example.com/import/
and when we ran JAXB bindings on main.xsd using maven plugin, it generated a class com.example.import.simpleResponseType.java
now, in our webservice application context, I need to define oxm:jaxb2-marshaller and I have something like below
But the actual xml response looks as below
Code:
<Envelope>
<Header/>
<Body>
<someResponse></someResponse>
</Body>Now, since while unmarshalling it encounters <someResponse> instead of <simpleResponseType> , it is throwing exception. Which makes sense ? but JAXB did not generate any someResponse.java and it only generates simpleResponseType.java.
Is there any way to fix this problem, by not altering xsd as that is out of our control?
Thanks
|
Regards
KumarRaja
|
 |
 |
|
|
subject: Unable to unmarshall the webservice response
|
|
|