I am trying to read in this .NET WCF Basic http binding web service: http://videoconferencingbookingsystem.com/BasicInfo/WhyGoService.svc?wsdl
My calling script is as follows:
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);
...and I'm getting this error:
Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: 'IWhygoService_getBasicInformation_InputMessage' already defined
Does anyone know what's wrong?