我正在尝试阅读此 .NET WCF Basic http 绑定 Web 服务:http: //videoconferencingbookingsystem.com/BasicInfo/WhyGoService.svc ?wsdl
我的调用脚本如下:
define('RESPONSE_TIMEOUT', 600);
set_time_limit(RESPONSE_TIMEOUT+30);
header('Content-Type: text/plain');
$options = array(
'soap_version' => SOAP_1_2,
'trace' => 1,
'connection_timeout' => 30,
'login' => 'xxxxxxx',
'password' => 'xxxxxxx',
'trace' => 1
);
$client = new SoapClient('http://videoconferencingbookingsystem.com/BasicInfo/WhyGoService.svc?wsdl', $options);
...我收到了这个错误:
致命错误:未捕获的 SoapFault 异常:[WSDL] SOAP-ERROR:解析 WSDL:'IWhygoService_getBasicInformation_InputMessage' 已定义
有谁知道出了什么问题?