春天& Web服务客户端 - 故障详细信息

时间:2008-09-19 10:32:30

标签: spring service webservicetemplate

如何获取SoapFaultClientException发送的故障详细信息? 我使用WebServiceTemplate,如下所示:

WebServiceTemplate ws = new WebServiceTemplate();
ws.setMarshaller(client.getMarshaller());
ws.setUnmarshaller(client.getUnMarshaller());
try {
    MyResponse resp = (MyResponse) = ws.marshalSendAndReceive(WS_URI, req);
} catch (SoapFaultClientException e) {
     SoapFault fault =  e.getSoapFault();
     SoapFaultDetail details = e.getSoapFault().getFaultDetail();
      //details always NULL ? Bug?
}

发送的Web服务错误似乎是正确的:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
  <soapenv:Fault>
     <faultcode>soapenv:Client</faultcode>
     <faultstring>Validation error</faultstring>
     <faultactor/>
     <detail>
        <ws:ValidationError xmlns:ws="http://ws.x.y.com">ERR_UNKNOWN</ws:ValidationError>
     </detail>
  </soapenv:Fault>
</soapenv:Body>

由于

Willome

4 个答案:

答案 0 :(得分:6)

我还遇到了getFaultDetail()返回null(对于SharePoint Web服务)的问题。我可以通过使用类似于此的方法来获取detail元素:

private Element getDetail(SoapFaultClientException e) throws TransformerException {
    TransformerFactory transformerFactory = TransformerFactory.newInstance();
    Transformer transformer = transformerFactory.newTransformer();
    DOMResult result = new DOMResult();
    transformer.transform(e.getSoapFault().getSource(), result);
    NodeList nl = ((Document)result.getNode()).getElementsByTagName("detail");
    return (Element)nl.item(0);
}

之后,您可以在返回的Element或任何您想要的内容上调用getTextContent()。

答案 1 :(得分:4)

查看接收Soap Fault时获得的HTTP响应类型。当SOAP Fault响应使用HTTP 200而不是HTTP 500时,我遇到了同样的问题。然后你得到:

  

JAXB解组异常;嵌套异常是   javax.xml.bind.UnmarshalException

当您更改WebServiceTemplate连接错误设置时,如下所示:

WebServiceTemplate webServiceTemplate = getWebServiceTemplate();
webServiceTemplate.setCheckConnectionForFault(false);

然后您可以正确捕获 SoapFaultClientException

答案 2 :(得分:0)

来自marshalSendAndReceive method的Javadocs 它看起来像catch块中的SoapFaultClientException永远不会发生。

从API看,确定故障细节的最佳选择是设置自定义Fault Message Receiver

答案 3 :(得分:0)

问题来自JAXB库