解组不属于命名空间的 xml 元素

发布于 2024-11-15 09:15:14 字数 785 浏览 0 评论 0原文

我有一个来自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苏璃陌 2024-11-22 09:15:14

你有xsd吗?我认为 element 应该在你的 xsd 中定义

Do you have an xsd? I presume element should be defined in your xsd

无畏 2024-11-22 09:15:14

据推测,您有一个 response 元素的架构,其中它引用了 error 元素,该元素位于单独的架构中(不幸的是,架构不能有多个同一文件中的命名空间)。带有 error 元素的单独架构文件将没有 targetNamespace。

presumably, you have a schema for the response element, where it has a reference to the error element, which is in a separate schema (unfortunately, schemas cannot have more than one namespace in the same file). the separate schema file with the error element will have no targetNamespace.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文