我正在尝试使用.NET SOAP服务,但我目前只是假装错误的#39;响应。
访问服务端点告诉我以下内容:
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SendData xmlns="http://tempuri.org/">
<myObj>string</myObj>
</SendData>
</soap:Body>
</soap:Envelope>
但是当我检查我的请求时,它发送以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tempuri.org/">
<SOAP-ENV:Body>
<ns1:SendData>
<ns1:myObj>My data</ns1:myObj>
</ns1:SendData>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
因此,我们可以看到我的请求具有不同的节点标题,并且还添加了&#34; ns1:&#34;参数。
这是我的(简短的)PHP
$soap = new SoapClient('wsdl.xml', array("trace" => 1, "exception" => 1));
$call = $soap->__soapCall("SendData", array("SendData" => array("myObj" => "My data")));
所以我的问题是:请求架构中的这种差异是否可能导致请求失败,或者这只是编写相同内容的另一种方式?如果它负责,是否可以完全按照端点指定的方式编写我的请求?
答案 0 :(得分:0)
这是一回事。
在给定示例中,<SendData xmlns="http://tempuri.org/">
没有名称空间前缀(您自己的请求中为ns1
),因此使用默认前缀,并为其自身及其后代指定xmlns
属性
在您的请求中ns1
命名空间前缀是使用xmlns:ns1="http://tempuri.org/"
定义的,并在<ns1:SendData>
中使用。