简体   繁体   中英

PHP: SOAP webservice client to ASP.NET webservice server

I was trying to connect to asp.net webservice from PHP, I dont want to use nuSOAP I have created SOAP client using default SoapClient()

$options = array('style'=>SOAP_DOCUMENT,
        'use'=>SOAP_LITERAL,
        'soap_version'=>SOAP_1_1, 
        'exceptions'=>1, 
        'trace'=>1
    );

$clnt = new SoapClient('webserviceURL?wsdl', $options);
$clnt ->__Call('method', array('param'=>'val'));

Now, Webservice server is not recogising my Parameter that I am passing to the webservice method.

Can Anyone help me ?

如果webservice期望document / literal包装调用约定,那么你应该将方法参数放在另外的数组中:

$clnt ->__Call('method', array(array('param'=>'val')));

Yes, I got the Answer

$params = array('param'=>'val');
$resp = $clnt->method(array('param'=>$params));

'method' is webservice method you want to call

Method mentioned by Furgas will also work

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM