この .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' は既に定義されています
誰が何が悪いのか知っていますか?