in reply to Re^4: SOAP::Serializer::envelope: Client Application failed during request deserialization
in thread SOAP::Serializer::envelope: Client Application failed during request deserialization

I made the tests and the test results were ok

Then you need to post a short self contained program that shows the problem.

  • Comment on Re^5: SOAP::Serializer::envelope: Client Application failed during request deserialization

Replies are listed 'Best First'.
Re^6: SOAP::Serializer::envelope: Client Application failed during request deserialization
by david2008 (Scribe) on Jun 23, 2010 at 07:30 UTC
    i write the flow at the client side
    my $soap = SOAP::Lite->uri( 'Menu/SOAP')->proxy('<url>/a.cgi', timeout => $timeout) ; my $response; $response = $soap->find_services($obj, $instance);
    at the server side a.cgi
    use SOAP::Transport::HTTP; use Menu::SOAP; SOAP::Transport::HTTP::CGI -> dispatch_to('Menu::SOAP') -> handle;
    at Menu/SOAP.pm
    sub find_services { }
    I don't write the code of find_services as the program dies in the parsing beforehand.
    I would be happy to give more information when needed
        isn't it exactly what he did?