我正在使用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);
我在做什么错?帮助将不胜感激。