soap_wsdl

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
cypherRulez
Forum Newbie
Posts: 1
Joined: Sun Mar 14, 2010 1:57 am

soap_wsdl

Post 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??
Post Reply