in reply to LWP on JSP site...

You might want to to look at HTML::Form module, that does the form submission for you.

The usage of HTML::Form is pretty simple and it parses all the methods and action tags automatically for you, also making the form submission as easy as calling $form->click;

Replies are listed 'Best First'.
Re: Re: LWP on JSP site...
by IlyaM (Parson) on Jul 24, 2002 at 10:56 UTC
    Using of HTML::Form unlikely to fix a problem as this module internally uses LWP::UserAgent.

    I'm not sure but this problem could be related to new HTTP/1.1 support code in latest versions of LWP. You may try to set environment variable PERL_LWP_USE_HTTP_10 before running your script. See perldoc LWP for details.

    --
    Ilya Martynov (http://martynov.org/)

      I tried doing so, but no change. Any other ideas?

      Michael Jensen