jfroebe has asked for the wisdom of the Perl Monks concerning the following question:
I'm having trouble getting the example code (Quick Start with SOAP) to work with my Apache server. What's odd is that there aren't any errors in the apache error log or STDERR.
I run hibye.pl to connect to my webserver which will run the cgi script hibye.cgi. I don't receive any output with respect to the web app. This has got to be something simple. Yes, the cgi-bin is set up correctly for cgi execution. Normal cgi apps work fine.
I've also added the /var/www/cgi-bin/soap directory to the PERL5LIB environment variable in the /etc/init.d/httpd. Ideas?
./hibye.pl 0.60
#!/usr/bin/perl -w # -- SOAP::Lite -- guide.soaplite.com -- Copyright (C) 2001 Paul Kulch +enko -- use SOAP::Transport::HTTP; SOAP::Transport::HTTP::CGI -> dispatch_to('Demo') -> handle; package Demo; sub hi { return "hello, world"; } sub bye { return "goodbye, cruel world"; } sub languages { return ("Perl", "C", "sh"); }
#!/usr/bin/perl -w # -- SOAP::Lite -- guide.soaplite.com -- Copyright (C) 2001 Paul Kulch +enko -- use SOAP::Lite; print $SOAP::Lite::VERSION . "\n"; print SOAP::Lite ->uri('http://localhost/cgi-bin/soap/Demo') ->proxy('http://localhost/cgi-bin/soap/hibye.cgi') ->hi() ->result; print SOAP::Lite ->uri('http://localhost/cgi-bin/soap/Demo') ->proxy('http://localhost/cgi-bin/soap/hibye.cgi') ->bye() ->result;
No one has seen what you have seen, and until that happens, we're all going to think that you're nuts. - Jack O'Neil, Stargate SG-1
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Getting soap client/server to work
by gellyfish (Monsignor) on Dec 04, 2006 at 21:30 UTC | |
by jfroebe (Parson) on Dec 04, 2006 at 21:36 UTC | |
by jfroebe (Parson) on Dec 04, 2006 at 21:41 UTC | |
by gellyfish (Monsignor) on Dec 04, 2006 at 22:30 UTC | |
by jfroebe (Parson) on Dec 04, 2006 at 22:41 UTC |