我正在使用SOAP API。我收到的XML响应被一个“肥皂信封”所包围。 - 所以我需要在处理XML之前删除或解析该包装器。我已经采用了以下方法与其他端点(所以代码至少是理智的)但是对于这个特定的端点,我得到了错误。
我遇到的错误是:
SEVERE:SAAJ0304:InputStream不代表有效的SOAP 1.1 消息
这是我用来删除Soap Wrapper的代码:
String soapResponse = getSoapResponseFromApi();
ByteArrayInputStream inputStream = new ByteArrayInputStream(soapResponse.getBytes());
SOAPMessage message = MessageFactory.newInstance().createMessage(null, inputStream);
Document doc = message.getSOAPBody().extractContentAsDocument(); // <-- error thrown here
//unmarhsall the XML in 'doc' into an object
//do useful stuff with that object
这是我收到的XML(上面代码中soapResponse的内容)
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<XMLContentIActuallyWant xmlns="http://my-url.com/webservices/">
<!-- Useful stuff here -->
</XMLContentIActuallyWant >
</soap:Body>
</soap:Envelope>
答案 0 :(得分:3)
我在准备这个问题时发现了解决方案。
肥皂版本有不同的格式。 SoapMessage库默认为soap 1.1 - 但我收到的响应内容是soap 1.2。
当我查看正在发送的完整请求时,我可以看到这一点,以便收到上面提到的响应 - 它看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<!-- xml content here -->
</soap12:Body>
</soap12:Envelope>
肥皂 12 部分强调它要求肥皂1.2。
所以虽然回复并不包含&#39; 12&#39; - 回复也是1.2。
所以我们需要告诉SoapMessage使用1.2而不是默认值(在我的情况下为1.1)。
我通过修改上面的代码来实现这一点:
之前:
SOAPMessage message = MessageFactory.newInstance().createMessage(null, inputStream);
之后:
SOAPMessage message = MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL).createMessage(null, inputStream);
值得注意的是,同一API的其他端点服务于SOAP 1.1 - 这就是为什么这个错误让我感到困惑的原因。我做了同样的事情,得到了不同的结果。