向soap url添加参数

时间:2018-11-07 10:59:18

标签: php api web-services soap soap-client

我正在使用php soap-client,并且尝试传递作为操作方法一部分的额外url参数,但没有成功。

这是基本的ws网址:

http://example.com/Some_WebServices/Items_Service.asmx

这就是我所需要的:

http://example.com/Some_WebServices/Items_Service.asmx/MyRequiredMethod?some_params=xxx

我正在尝试(不工作!)

$params = [array of other params (not related to the url ones.)];
$url = 'http://example.com/Some_WebServices/Items_Service.asmx?WSDL';
$client = new SoapClient($url);
$res = $client->MyRequiredMethod($params);

我在做什么错?帮助将不胜感激。

0 个答案:

没有答案