我有asmx webservice url:http://newxilnexbackend.cloudapp.net/XilnexNewReg.asmx我正在尝试使用php soapclient调用此Web服务但是我遇到了这个错误(致命错误:SOAP错误:(faultcode:soap:Server,faultstring:服务器无法处理请求.--->对象引用未设置为对象的实例。)在第27行的C:\ xampp \ htdocs \ wwwroot \ captcha.php中)。我已经尝试了一切来解决这个但没有解决方案。任何人都可以帮我找出我错误地做了哪一部分。
这是我的PHP代码:
enter code here$tes = 'hi';
try{
$client = new SoapClient("http://newxilnexbackend.cloudapp.net/XilnexNewReg.asmx?WSDL");
$result = $client->RegistrationOfNewCompany(array(
$tes, $tes, $tes
));
header("Location: http://webapp.xilnex.com/");
}
catch (SoapFault $fault) {
trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR);
}}
我也试过这种方式,但得到了同样的错误:
$result = $client->RegistrationOfNewCompany(array(
EmailAddress=>$tes,
CompanyName=>$tes,
Name=>$tes
));