getting Uncaught SoapFault exception when using soap client

StephanieR

New Member
PHP Version: 5.3.3I'm using the SOAP extension to pull data from a web api. Below you can see my connection details. When it gets to line 3 I get an error:\[code\]Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://www.global1.autotask.net/atservices/1.2/atws.wsdl' : failed to load external entity "https://www.global1.autotask.net/atservices/1.2/atws.wsdl" in C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\ATAPI\index.php:5 Stack trace: #0 C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\ATAPI\index.php(5): SoapClient->SoapClient('https://www.glo...', Array) #1 {main} thrown in C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\ATAPI\index.php on line 5\[/code\]Here are my connection details:\[code\]$wsdl = 'https://www.global1.autotask.net/atservices/1.2/atws.wsdl';$loginarray = array('login' => "[email protected]", 'password' => "******", 'uri'=>"http://autotask.net/ATWS/v1_2/", 'location'=>"https://global1.autotask.net/atservices/1.2/atws.asmx");$client = new SoapClient($wsdl, $loginarray);\[/code\]I've googled and see that it's possibly a bug with the soap extension?I've uncommented:\[code\]extension=php_soap.dll\[/code\]In the php.ini file. and I've also made sure my allow url fopen is set to on:\[code\]allow_url_fopen = On\[/code\]Anyone got an idea how I get get round this problem? Maybe I've forgotten to do something?Thanks,Billy
 
Back
Top