in reply to Re^2: HTTP Post read response , Post again
in thread HTTP Post read response , Post again

You can disable "TE" header sending by tweaking LWP::Protocol::http properties. Add the following to your code and TE will not sent.
push(@LWP::Protocol::http::EXTRA_SOCK_OPTS, SendTE => 0);
Regards,