Page 1 of 1

soap_wsdl

Posted: Sun Mar 14, 2010 3:05 am
by cypherRulez
hi there, i'm new to the forum.
i posted this question to so many forums but by now no one it's been able to answer me.
hope this is the right an the last one :).
i've to create a kinda web service client.
below the code:

Code: Select all

require_once 'SOAP/Client.php';
 
$wsdl_url = 'http://boa.aiser.it/LPN/webservices/gestorerichieste.asmx?WSDL';
echo $wsdl_url."<br />";
$WSDL     = new SOAP_WSDL($wsdl_url); 
$client   = $WSDL->getProxy(); 
echo $client;
$anag    = $client->CercaAnagrafica('***','***','****','*****','****','','','');
print_r($anag);
 
but i get this error:

Code: Select all

 
unable to retrieve WSDL http://boa.aiser.it/LPN/webservices...ieste.asmx?WSDL
 
why's that??