fall95_3 has asked for the wisdom of the Perl Monks concerning the following question:
thanks#!perl use SOAP::Lite; $soap_response = SOAP::Lite -> uri('http://www.soaplite.com/Demo') + -> proxy('http://services.soaplite.com/hibye.cgi') -> getmd5hash("test"); @res = $soap_response->paramsout; $res = $soap_response->result; print "Content-type: text/html\n\n"; print "Result is $res, outparams are @res\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Access Web service via CGI
by olus (Curate) on Dec 20, 2007 at 15:18 UTC |