SayHello($_GET['name']));// Perform the SOAP request and output the response // You could also use the PhpWsdlClient->DoRequest method //echo htmlentities($client->DoRequest('SayHello',Array('you'))); // PhpWsdlClient can produce a documented PHP SOAP client for you /*$php=$client->CreatePhpSoapClient(null,Array('openphp'=>false));// $php will contain the generated PHP SOAP client source code eval($php);// This will load the SOAP client classes from the PHP code string $soapDemo=new SoapDemoSoapClient();// Create an instance of the generated class (the name of the webservice+"SoapClient" is the default class name) echo htmlentities($soapDemo->SayHello('you'));*/ ?>

SOAP demo

Enter a name: ">