我正在使用JAX WS 2.0调用SOAP Web服务。在出现错误的情况下,我得到以下响应:

<?xml version="1.0"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://www.w3.org/2003/05/soap-   envelope">
    <soap:Header/>
    <soap:Body>
        <soap:Fault  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://www.w3.org/2003/05/soap- envelope" xmlns:xml="http://www.w3.org/XML/1998/namespace">
            <soap:Code>
                <soap:Value>soap:Receiver</soap:Value>
            </soap:Code>
            <soap:Reason>
                <soap:Text  xml:lang="en">Exception of type 'blah blah' was thrown.
                </soap:Text>
            </soap:Reason>
            <soap:Node>{SOME URL}</soap:Node>
            <detail>
                <error>345</error>
                <message>Cannot find user. Blah  blah</message>
            </detail>
        </soap:Fault>
    </soap:Body>
</soap:Envelope>

如您所见,有用的错误在detail节点中:
<soap:Envelope>
    <soap:Body>
        <soap:Fault>
            <detail>

在我的客户端中,我得到了一个带有SOAPFault对象的SOAPFaultException。 SOAPFault对象似乎缺少我上面发布的节点。 SOAPFaultException.getFault()。getDetail()为null。但是,它具有所有其他节点,包括soap:Reason。知道为什么它缺少细节节点吗?

谢谢。

最佳答案

事实证明,细节节点也需要包括SOAP名称空间。因此它必须是:

<soap:detail>

由于我无法控制Web服务,因此我设法在注入客户端的自定义SOAPHandler的handleFault方法中进行了更改。更改之后,故障的详细信息不再为空,并且具有所有子节点。

基于http://www.w3.org/TR/soap12-part1/#soapfault,我相信开发人员需要在Fault期间更正响应。

08-06 12:29