in reply to Re: SOAP::Lite incompatible usage of HTTP::Headers
in thread SOAP::Lite incompatible usage of HTTP::Headers
I met with exactly the same problem. Changing line 103 of SOAP/Transport/HTTP2.pm to below can fix the symptom.
looks like a bug.$self->request(HTTP::Request->new( $r->method() => $r->uri, HTTP::Headers->new(%$r->headers_in), do { my ($c,$buf); while ($r->read($buf,$cl)) { $c.=$buf; } $c; } ));
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: SOAP::Lite incompatible usage of HTTP::Headers
by mgage (Initiate) on May 18, 2014 at 22:44 UTC |