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

No login is no issue, because when i enter no password I receive negative response. When both userid and password correct I see login successful message sent by server.
  • Comment on Re^2: HTTP Post read response , Post again

Replies are listed 'Best First'.
Re^3: HTTP Post read response , Post again
by Anonymous Monk on Dec 30, 2008 at 14:08 UTC
    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,