FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from ...
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
[WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from ... [message #169555] Fri, 17 September 2010 18:36 Go to previous message
yawnmoth is currently offline  yawnmoth
Messages: 5
Registered: September 2010
Karma:
Junior Member
<?php
$client = new SoapClient('https://demo.docusign.net/API/3.0/
Credential.asmx?WSDL');
?>

That PHP file gets me the following errors:

http://pastebin.com/b3xQBLXD

If there wasn't anything at that URL that would be the problem, but as
is, there is a WSDL XML at that URL. Going to it with my browser
confirms that. I can even access that URL with PHP / curl as the
following demonstrates:

<?php
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://demo.docusign.net/API/3.0/
Credential.asmx?WSDL');
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
var_dump(curl_exec($curl));
?>

So why can't I access it with the SoapClient constructor?
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Illegal variable _files
Next Topic: Accessing different resultsets that were created by a mysql stored procedure
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 20 19:19:11 GMT 2024

Total time taken to generate the page: 0.04245 seconds