http://www.perlmonks.org?node_id=846280


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

I know i still don't have a self contained program but i think i solved the problem
In the function SOAP::Transport::HTTP::CGI::handle when changing
sysread( STDIN, $buffer, $length )
to
read( STDIN, $buffer, $length )
everything works perfect. I don't know why, but it works now.
  • Comment on Re^2: SOAP::Serializer::envelope: Client Application failed during request deserialization
  • Select or Download Code

Replies are listed 'Best First'.
Re^3: SOAP::Serializer::envelope: Client Application failed during request deserialization
by Anonymous Monk on Oct 17, 2010 at 19:26 UTC
    I can confirm I had exactly the same problem and fixed successfully just by editing the file as you suggested:

    sysread( STDIN, $buffer, $length )
    to
    read( STDIN, $buffer, $length )

    Centos 5.5 + DAG repositories

    Before this, I tried reinstalling everything several times from different sources: cpan and rpms using yum+rpmforge.

    I can't believe it! how disappointing from CPAN.