【发布时间】:2012-05-16 09:38:38
【问题描述】:
我正在尝试阅读此 .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: Parsing WSDL: 'IWhygoService_getBasicInformation_InputMessage' 已定义
有谁知道怎么回事?
【问题讨论】:
-
看来错误来自php方面,我无能为力。只是为了验证 - 如果您放置 fiddler,客户端是否会向服务器发送任何内容并获得任何类型的响应?
-
看看能不能帮到你,这个问题和你的stackoverflow.com/questions/4906871/…很相似
标签: php wcf web-services