SOAP: Difference between revisions

Content added Content deleted
Line 50: Line 50:
$result = $client->anotherSoapFunc(34234);
$result = $client->anotherSoapFunc(34234);


//SOAP Information
/*
$client = new SoapClient("http://example.com/soap/definition.wsdl");


//list of SOAP types
SOAP Client Information
print_r($client->__getTypes());


//list if SOAP Functions
*/
print_r($client->__getFunctions());

$client = new SoapClient("http://example.com/soap/definition.wsdl");

//list of SOAP types
print_r($client->__getTypes());

//list if SOAP Functions
print_r($client->__getFunctions());
?>
?>