On Thu, 18 Aug 2005, Steve Baker wrote:

[ ... ]
This is my client now:

use SOAP::Lite +trace => [qw(all)];

my $soap = SOAP::Lite->uri('http://<my server>/Demo')
~    ->proxy('http://<my server>/steve/rpc/')->on_fault(
~    sub {
~        my ($soap, $res) = @_;
~        die ref $res ? $res->faultdetail : $soap->transport->status, "\n";
~    }
~    );
my $obj = $soap->call('hi');
print $obj->result;

~From the output, it looks like the call is being made, and it is
succeeding:
[ ... ]
On the other hand, I get similar results with known bad input (calling a
method which doesn't exist, putting a non-existent module name in the
uri, etc) so I'm pretty sure the module is never really loaded.

Does adding a
   PerlModule Demo
to httpd.conf, before the soap location, do anthing different?

--
best regards,
randy

Reply via email to