SOAP

Revision as of 15:27, 23 January 2007 by rosettacode>Backupbrain (initial import of php soap client example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

PHP

<?php
 //PHP5 only example due to changes in XML extensions between version 4 and 5 (Tested on PHP5.2.0)
 /*
  * Assuming you have a wsdl definition file at at 'http://example.com/soap/wsdl',
  * you can create a client...
  */
 $client = new SoapClient('http://example.com/soap/wsdl');
 /*
  * in this example, the soap server has a function called 'soapFunc' with a 
  * single string parameter $input, and returns a result.
  */
 $result = $client->soapFunc('hello');
 /*
  * in this example, the soap server has a function called 'anotherSoapFunc' with a 
  * single integer parameter $input, and returns a result.
  */
 $result = $client->anotherSoapFunc(34234);

?>