On Tue, 4 May 2004, Geoffrey Young wrote:

> > When I execute the client program I get 405 Method not
> > allowed at /hello.pl line 11 error and no error messages
> > in the error or access log files. Can someone shed some
> > light on this for me?  I read all the docs I could find
> > regarding this on Google and SOAPLite.org and still have
> > not been able to resolve the problem.
>
> this really isn't a SOAP::Lite support forum, so you might
> want to try the soaplite list (still on yahoo?) instead.
>
> in any case, it's been a while since I played with
> SOAP::Lite, but here is how I used to debug things, which
> I'm pretty sure I found in the docs:
>
> use SOAP::Lite
>   +autodispatch =>
>   uri => 'http://localhost/Foo/SOAP',
>   proxy => 'http://localhost/Foo',
>     on_fault => sub {
>       my($soap, $res) = @_;
>       die ref $res ? $res->faultstring :
>                      $res, " ", $soap->transport->status, "\n";
>     },
>     on_debug => [EMAIL PROTECTED];

As well as that for debugging, also check the soaplite
mailing list archives, as Geoff suggests - I believe that
some patches to SOAP::Lite (specifically, in
SOAP::Transport::HTTP) are needed to work with mod_perl 2.

-- 
best regards,
randy kobes

-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Reply via email to