我以前设法使用 PHP 的 SoapClient 库调用 .NET 服务而没有太多问题,但现在我面临必须以非 WSDL 模式访问相同服务的情况。
我似乎或多或少地创建了正确的 XML 结构以发送到服务,但服务器似乎没有接收到我发送的变量。
根据 SOAPUI 的输出,我应该尝试生成以下 SOAP 调用:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:int="http://someservices.com/">
<soapenv:Header/>
<soapenv:Body>
<int:getService>
<int:foo>String value for foo</int:foo>
<int:bar>String value for bar</int:bar>
</int:getService>
</soapenv:Body>
</soapenv:Envelope>
我使用 SOAPClient 生成的输出是:
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://someservices.com" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:enc="http://www.w3.org/2003/05/soap-encoding">
<env:Body>
<ns1:getService env:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
<foo xsi:type="xsd:string">String value for foo</foo>
<bar xsi:type="xsd:string">String value for bar</bar>
</ns1:getService>
</env:Body>
</env:Envelope>
从 .NET 服务返回的错误是“预期的栏!” - 至少表明该服务没有使用我的第二个参数。
我正在使用以下内容构建我的肥皂电话:
$foo = 'String value for foo';
$bar = 'String value for bar';
$options = array(
'trace' => 1,
'exceptions' => 1,
'uri' => 'http://someservices.com',
'soapaction' => 'http://someservices.com/getService',
'soap_version' => SOAP_1_2,
'type_map' => array('type_ns' => 'int')
);
$response = $soapclient->__soapCall('getService', array( new SoapParam($foo, 'foo'), new SoapParam($bar, 'bar')), $options);
我不确定问题是什么。现在我猜这可能是一个 xmlns 属性问题。请注意,SOAPUI 调用在函数调用和参数前面指定了 int:。我试图指定这个 xmlns 但没有运气。如您所见,由 Soap Client 调用生成的 xmlns 是:
xmlns:ns1
任何帮助将不胜感激。