Jump to content

SOAP: Difference between revisions

4 bytes removed ,  17 years ago
Line 45:
//load the wsdl file
$client = new SoapClient("http://example.com/soap/definition.wsdl");
//functions are now available to be called
$result = $client->soapFunc("hello");
Line 52 ⟶ 51:
//SOAP Information
$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());
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.