使用不带wsdl的soap客户端时,值返回0

时间:2018-08-23 06:45:02

标签: php soap

我请求成功,但是响应值为0而不是3,为什么? 我使用库SOAP客户端PHP。 这是我的代码。

 $client = new SoapClient(null, array('location' => 
    "http://www.dneonline.com/calculator.asmx",
          'uri'      => "http://tempuri.org/",
           'encoding' => 'UTF-8',
           'soap_version'=>SOAP_1_2,
           'trace' => 1));
    $params = array('intA'=>'1','intB'=>'2');
    $return = $client->__soapCall("Add",array('parameters' => $params),
    array('soapaction' => 'http://tempuri.org/Add'));
    var_dump($return);

0 个答案:

没有答案