如何正确形成__soapCall参数

时间:2017-03-01 05:10:54

标签: php web-services soap soap-client

尝试使用参数进行肥皂调用:

$client = new SoapClient( null, [
    'location'   => $url,
    'uri'        => $uri,
    'trace'      => 1,
    'exceptions' => 1
] );

$params['parameters'] = [
    'p1'=>'v1',
    'p2'=>'v2'
];

$client->__soapCall('generate',$params);

我希望我的请求看起来像这样:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:ns1="some_url_here">
    <SOAP-ENV:Body>
        <ns1:generate>
            <parameters>
                <p1>v1</p1>
                <p2>v2</p2>
            </parameters>
        </ns1:generate>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

但我得到的是:

var_dump($client->__getLastRequest());

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:ns1="some_url_here"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
                   SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
    <ns1:generate>
        <param0 xsi:type="ns2:Map">
            <item>
                <key xsi:type="xsd:string">p1</key>
                <value xsi:type="xsd:string">v1</value>
            </item>
            <item>
                <key xsi:type="xsd:string">p2</key>
                <value xsi:type="xsd:string">v2</value>
            </item>
        </param0>
    </ns1:generate>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

任何想法如何正确形成params列表以获得通缉请求? 感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

使用Soap Web服务的最好和最快的方法是使用WSDL到php生成器,因为您不会想知道如何构造请求。

尝试PackageGenerator项目,您会发现构建请求很容易(除非您故意这样做,否则不会出现任何错误;))。此外,收到的响应很容易处理。每个部分都是一个对象。