解组不属于命名空间的 xml 元素
我有一个来自 Web 服务的 xml 响应:
<ns2:response xmlns:ns2="http://abc.com">
<ns2:msgHeader>
<ns2:empid>1234</ns2:empid>
<ns2:empname>John</ns2:empid>
</ns2:msgHeader>
<error>
<httpstatus>500</httpstatus>
<description>Error while processing the request.Please contact customercare</description>
</error>
</ns2:response>
How do I unmarshall when the xml schema is in this format。
是根元素
的一部分。
我正在使用 Restful 客户端并使用 Resttemplate 向服务器发出请求。我的 applicationcontext.xml
使用 org.springframework.http.converter.xml.MarshallingHttpMessageConverter
来编组和解组请求和响应 XML。
I have an xml response coming from a webservice:
<ns2:response xmlns:ns2="http://abc.com">
<ns2:msgHeader>
<ns2:empid>1234</ns2:empid>
<ns2:empname>John</ns2:empid>
</ns2:msgHeader>
<error>
<httpstatus>500</httpstatus>
<description>Error while processing the request.Please contact customercare</description>
</error>
</ns2:response>
How do I unmarshall when the xml schema is in this format. <error>
is part of the root element <response>
.
I am using Restful client and using resttemplate to make the request to the server. My applicationcontext.xml
uses org.springframework.http.converter.xml.MarshallingHttpMessageConverter
for marshalling and unmarshalling the request and response XMLs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有xsd吗?我认为 element 应该在你的 xsd 中定义
Do you have an xsd? I presume element should be defined in your xsd
据推测,您有一个
response
元素的架构,其中它引用了error
元素,该元素位于单独的架构中(不幸的是,架构不能有多个同一文件中的命名空间)。带有error
元素的单独架构文件将没有 targetNamespace。presumably, you have a schema for the
response
element, where it has a reference to theerror
element, which is in a separate schema (unfortunately, schemas cannot have more than one namespace in the same file). the separate schema file with theerror
element will have no targetNamespace.