boat73 has asked for the wisdom of the Perl Monks concerning the following question:
####Client.pl#### #!perl -w use SOAP::Lite; print SOAP::Lite -> uri('http://localhost/Echo') + -> proxy('http://localhost/scripts/Server.cgi') -> hi() -> result; ####Server.cgi#### #!perl -w use SOAP::Transport::HTTP; SOAP::Transport::HTTP::CGI -> dispatch_to('Echo') -> handle; package Echo; sub hi { return "hello, world"; } sub bye { return "goodbye, cruel world"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl Web Service Returns Nothing
by Perlbotics (Archbishop) on Aug 10, 2011 at 16:56 UTC | |
by Anonymous Monk on Aug 10, 2011 at 17:17 UTC |