调用方法“服务器无法处理请求”时出现Soap错误。

时间:2019-06-28 11:41:48

标签: php soap wsdl

具有此wsdl网址

  

https://backoffice.voipinnovations.com/Services/APIService.asmx?wsdl

尝试调用 SendSMS API方法,出现以下错误

  

致命错误:未捕获的SoapFault异常:[soap:Server] System.Web.Services.Protocols.SoapException:服务器无法处理请求。 ---> System.NullReferenceException:对象引用未设置为对象的实例。      在VIBackOffice.Services.APIService.SendSMS(字符串登录,字符串秘密,字符串发送者,字符串接收者,字符串消息)

这就是我使用PHP的方式

$client = new SoapClient('https://backoffice.voipinnovations.com/Services/APIService.asmx?wsdl', ["trace" => 1]);
$params = [
"login"     => 'login',
"secret"    => 'secret',
"sender"    => 'sender',
"recipient" => 'recipient',
"message"   => 'message'
];

$result = $client->SendSMS($params);
//or
$result = $client->__soapCall("SendSMS", $params);
//or even
$result = $client->SendSMS('login', 'secret', 'sender', 'recipient', 'message');

无论我尝试什么,它都会因该错误而失败。是我形成请求正文的方式,还是服务的API?

编辑:对参数键使用单引号有效。

0 个答案:

没有答案