的一部分,我有一個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>
如何解組時,XML Schema是這種格式。 <error>
是根元素<response>
的一部分。
我正在使用Restful客戶端並使用resttemplate向服務器發出請求。我的applicationcontext.xml
使用org.springframework.http.converter.xml.MarshallingHttpMessageConverter
進行編組和解組請求和響應XML。