in reply to Soap::Transport::HTTP vs DBI

Have you tried tracing what actually happens, by using SOAP::Trace respectively

SOAP::Lite->import(+trace => all => -result => -parameters);

?

Replies are listed 'Best First'.
Re^2: Soap::Transport::HTTP vs DBI
by snafui (Initiate) on Jul 02, 2010 at 16:36 UTC
    It looks like the useful lines from trace=>all are:

    SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 500 Internal Server Error

    and
    <faultcode>soap:Client</faultcode><faultstring>Denied access to method + (return1) in class (Test) at /usr/lib/perl5/site_perl/5.8.5/SOAP/Lit +e.pm line 2731. </faultstring>

    So the HTTP daemon is giving an internal server error. Is there some similar debugging code I can use on the SOAP::Transport::HTTP::Daemon?
      Regarding the docs "access denied" is thrown when the called class is not available in the path given to dispatch_to. DYNAMIC_DEPLOYMENT_EXAMPLE