5

如何获取 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>

谢谢

威洛姆

4

3 回答 3

9

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

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()。

于 2012-06-18T11:43:56.157 回答
6

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

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

当您更改 WebServiceTemplate 连接故障设置如下:

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

那么您可以正确捕获SoapFaultClientException

于 2016-05-05T09:47:58.890 回答
1

marshalSendAndReceive 方法的 Javadocs 看来,catch 块中的 SoapFaultClientException 永远不会发生。

从 API 看来,确定故障细节的最佳选择是设置自定义故障消息接收器

于 2008-09-19T21:41:27.533 回答