在 .NET 网络服务上使用 PHP SOAP 客户端
Using PHP SOAP client on .NET web service
我正在尝试使用 .NET SOAP 服务,但我目前只收到 'false' 响应。
访问服务端点会告诉我以下信息:
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>
所以我们可以看到我的请求有不同的节点标题,并且还在参数中添加了"ns1:"。
这是我的(简要)PHP
$soap = new SoapClient('wsdl.xml', array("trace" => 1, "exception" => 1));
$call = $soap->__soapCall("SendData", array("SendData" => array("myObj" => "My data")));
所以我的问题是:请求模式中的这种差异是否会导致请求失败,或者这只是另一种编写相同内容的方式?如果它负责,是否可以完全按照端点指定的方式编写我的请求?
是一回事
在给定的示例中,<SendData xmlns="http://tempuri.org/">
没有名称空间前缀(您自己的请求中的 ns1
),因此使用默认前缀,并使用 xmlns
属性为其自身指定,并且它的后代。
在您的请求中,ns1
命名空间前缀使用 xmlns:ns1="http://tempuri.org/"
定义并在 <ns1:SendData>
中使用。
我正在尝试使用 .NET SOAP 服务,但我目前只收到 'false' 响应。
访问服务端点会告诉我以下信息:
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>
所以我们可以看到我的请求有不同的节点标题,并且还在参数中添加了"ns1:"。
这是我的(简要)PHP
$soap = new SoapClient('wsdl.xml', array("trace" => 1, "exception" => 1));
$call = $soap->__soapCall("SendData", array("SendData" => array("myObj" => "My data")));
所以我的问题是:请求模式中的这种差异是否会导致请求失败,或者这只是另一种编写相同内容的方式?如果它负责,是否可以完全按照端点指定的方式编写我的请求?
是一回事
在给定的示例中,<SendData xmlns="http://tempuri.org/">
没有名称空间前缀(您自己的请求中的 ns1
),因此使用默认前缀,并使用 xmlns
属性为其自身指定,并且它的后代。
在您的请求中,ns1
命名空间前缀使用 xmlns:ns1="http://tempuri.org/"
定义并在 <ns1:SendData>
中使用。