我正在使用 PHP 从肥皂调用以下 wsdl url
$response = new SoapClient("http://192.168.1.8:8080/myAPI/ws/TESTWS?wsdl");
我正在使用soapclient返回值检查函数名称
$soapFunctions = $response->__getFunctions();
print_r($soapFunctions);
它返回
Array
(
[0] => sampleMethodResponse sampleMethod(sampleMethod $parameters)
)
然后我使用上面的返回函数名称“sampleMethod”使用 __soapcall 函数将值发送到 wsdl 函数。
try{
$soapstr = $response->__soapCall("sampleMethod", array( 'userId' => "8561",
'value' => "test",
'type' => "1",
'send' => "1",
));
echo "Response:\n" . $soapstr->__getLastResponse(). "\n";
}catch (Exception $e){
echo $e->getTraceAsString();
}
上面的代码返回以下错误
#0 /home/karthik/git/PHPFrontend/easymedmobile.com/htdocs/wsdl/index.php(56): SoapClient->__soapCall('sampleMethod', Array)
#1 {main}
帮助解决这个问题,我在这个文件中做错了什么。