如何在故障消息解析器中取消处理 SOAP 故障?
我是Spring-WS的新手,慢慢地把我的头缠绕在它上面。现在,我正在编写一个简单的客户端来与现有 WS 进行通信。我正在使用WebServiceTemplate和marshalSendAndReceive方法。一切都很好。
但是,当发生 SOAP 错误时,WST 会引发 SoapFaultClientException。我注意到我可以创建自己的故障消息解决方案来检查SOAP错误中包含的内容。但是,当我尝试在我的故障消息解析器中取消发送 WebServiceMessage 时,我收到以下错误消息:
JAXB unmarshalling exception; nested exception is javax.xml.bind.UnmarshalException: unexpected element (uri:"http://schemas.xmlsoap.org/soap/envelope/", local:"Fault"). Expected elements are ....
显然,我的取消元帅配置不正确。我是否必须使用 xjc 自己生成 JAXB 故障模型才能取消错误?我有些惊讶,这还不存在。
有没有更好的方法从我的 soap:fault 响应中添加我的自定义错误信息?我的错误如下所示,我正在尝试提取/访问服务错误项。
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>Blaze Data Error</faultstring>
<detail>
<ns14:serviceErrors xmlns="http://www.nb.com/ClientServices/LendingSimulation/CalculateProfitabilityRequest" xmlns:ns13="http://www.nb.com/fw/errorMgmt" xmlns:ns14="http://www.nb.com/ClientServices/LendingSimulation/V1" >
<ns13:faultstring>ServiceExecutionError</ns13:faultstring>
<ns13:serviceError>
<ns13:errorCode>C10F1013</ns13:errorCode>
<ns13:errorType>B</ns13:errorType>
<ns13:errorMessage>Unable to retreive additional data</ns13:errorMessage>
<ns13:fieldName>Message error received from PHClient : [An unexpected error code was received : system=PH context=[empty]]</ns13:fieldName>
<ns13:systemId>Calculator</ns13:systemId>
<ns13:time>2012-06-19 14:45:10.151-0400</ns13:time>
</ns13:serviceError>
</ns14:serviceErrors>
</detail>
</soap:Fault>
</soap:Body>
</soap:Envelope>
谢谢!
埃里克