我正在使用postman从postman调用SOAP API。
<?xml version="2.0" ?>
<Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<get xmlns:S="http://xml.abc.com/cde/2.xsd" xmlns:S="http://ws.abc.com/cde.2">
<sid>2</sid>
</get>
</Body>
</Envelope>
但是,它给出了以下回应。
<?xml version='1.0' encoding='UTF-8'?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<S:Fault xmlns:ns4="http://www.w3.org/2003/05/soap-envelope">
<faultcode>S:VersionMismatch</faultcode>
<faultstring>Couldn't create SOAP message. Expecting Envelope in namespace http://schemas.xmlsoap.org/soap/envelope/, but got </faultstring>
</S:Fault>
</S:Body>
</S:Envelope>
有人可以帮助我吗,我做错了什么。
答案 0 :(得分:1)
您的Soap Envelope命名空间不正确,您的请求应该是 -
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2003/05/soap-envelope/"
soap:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
<soap:Body>
<ns1:get xmlns:ns1="http://ws.abc.com/cde.2">
<ns1:sid>2</ns1:sid>
</ns1:get>
</soap:Body>
</soap:Envelope>
答案 1 :(得分:0)
与 SOAP 版本有关。 SOAP 1.2 使用 http://www.w3.org/2003/05/soap-envelope 作为命名空间,SOAP 1.1 使用 http://schemas.xmlsoap.org/soap/envelope/。
有关参考,请参阅 http://www.w3.org/TR/soap/ 并查看不同版本规范中的信封部分。