I have created a perl webservice using the article http://www.developer.com/tech/article.php/3566631 and need help desparetly. Please could some one tell me how to call this service and obtain return values from php4. I tried with NuSOAP, but just dont know how to call it and use the return values. Please help.
Calling webservice with NuSOAP is really easy, please see the following code and you will get an idea how to do that. <?php include('nusoap.php'); $client = new SoapClient("http://YourPerlService.com/perl.wsdl"); $response = $client->call("youMethod", "yourParameters")); ?> PHP: Now the values returned from webservice are stored in $response. I hope this will give you some hint, if you still have problems with it feel free to ask