Jump to content

SOAP: Difference between revisions

4 bytes removed ,  17 years ago
Line 43:
'''Version:''' [[PHP]] 5.0.0+
<?php
 
//load the wsdl file
$client = new SoapClient("http://example.com/soap/definition.wsdl");
Line 50 ⟶ 49:
$result = $client->soapFunc("hello");
$result = $client->anotherSoapFunc(34234);
 
?>
 
===SOAP Client Information===
<?php
 
$client = new SoapClient("http://example.com/soap/definition.wsdl");
 
Line 63 ⟶ 60:
//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.