We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For now in version jaxb-runtime-4.0.4 nested elements don't inherit the root element namespace.
@XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "ResponseType", namespace = "http://www.anyurl.com/wsdl/") public class ResponseType { @XmlElement(required = true) protected String status; @XmlElement(required = true) protected String message;
Status and message will get "" namespace instead of XmlRootElement's namespace so i get unmarshalleing error if try to unmarshall:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="http://www.anyurl.com/wsdl/"> <soapenv:Header/> <soapenv:Body> <wsdl:ResponseType> <wsdl:status>01</wsdl:status> <wsdl:message>success</wsdl:message> </wsdl:ResponseType> </soapenv:Body> </soapenv:Envelope>
Unmarshalling Error: unexpected element (uri:"http://www.anyurl.com/wsdl/", local:"status"). Expected elements are <{}message>,<{}status>
There was no this issue in the 4.0.3 version.
This is the reason 2269a1d#r135406382
What is the correct behaviour? I have been supposing that child elements should inherit their parents namespace.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For now in version jaxb-runtime-4.0.4 nested elements don't inherit the root element namespace.
Status and message will get "" namespace instead of XmlRootElement's namespace so i get unmarshalleing error if try to unmarshall:
Unmarshalling Error: unexpected element (uri:"http://www.anyurl.com/wsdl/", local:"status"). Expected elements are <{}message>,<{}status>
There was no this issue in the 4.0.3 version.
This is the reason 2269a1d#r135406382
What is the correct behaviour? I have been supposing that child elements should inherit their parents namespace.
The text was updated successfully, but these errors were encountered: