我是 Spring-WS 的新手,并且慢慢地开始思考它。现在,我正在编写一个简单的客户端来与现有的 WS 进行通信。我正在使用 WebServiceTemplate 和 marshalSendAndReceive 方法。一切正常。
但是,当发生 SOAP 故障时,WST 会引发 SoapFaultClientException。我注意到我可以创建自己的 FaultMessageResolver 来检查 SOAP 错误中包含的内容。但是,当我尝试在 FaultMessageResolver 中解组 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 响应中额外添加我的自定义错误信息?我的错误如下所示,我正在尝试提取/访问 serviceErrors 项。
<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>
谢谢!
埃里克