jeffa has asked for the wisdom of the Perl Monks concerning the following question:
Here is my http.conf info:
Here is the module i am trying to access (/usr/local/apache/lib/soap/Demo.pm):<Location /mod_soap> SetHandler perl-script PerlHandler Apache::SOAP PerlSetVar dispatch_to "/usr/local/apache/lib/soap" </Location>
And finally, the client:package Demo; sub foo { return "foo\n" } sub bar { return "bar\n" } 1;
When i run the client (webserver is active), i get the following error:use strict; use SOAP::Lite; my $soap = SOAP::Lite ->uri('http://localhost/Demo') ->proxy('http://localhost/mod_soap/') ; print $soap->foo()->result();
And this line is reported in the web server error log:500 unexpected EOF before status line seen
Any help is greatly apprectiated - it might be time for me to break out the packet sniffer . . . .[notice] child pid 18225 exit signal Segmentation fault (11)
Thanks,
jeffa
A flute with no holes is not a flute . . . a doughnut with no holes is a danish. - Basho, famous philosopher
|
---|
Replies are listed 'Best First'. | |
---|---|
(jeffa) Re: troubles writing mod_soap clients
by jeffa (Bishop) on Aug 22, 2001 at 21:49 UTC | |
by rob_au (Abbot) on Aug 21, 2003 at 13:59 UTC |