Simple Webservice Client in PHP
12 June 2007
No Comment
To test our early webservice code from here just use this simple php program.
require_once(‘lib/nusoap.php’);
$wsdl=”http://your.server.domain/ws.php?wsdl”;
$client=new soapclient($wsdl, ‘wsdl’);
$param=array(‘x’=>’1′,’y'=>’2′);
echo $client->call(‘TestFunction’, $param).”\n”;























Leave your response!