in reply to LWP::UserAgent connection problem as CGI

Set up LWP debugging with the following line:
use LWP::Debug qw(level); level('+');

You can redirect the output to either the CGI generated page or a file. The trace produced for each call helps you root out many LWP based errors. You will want to comment this line out in production.

Replies are listed 'Best First'.
Re: Re: LWP::UserAgent connection problem as CGI
by bassplayer (Monsignor) on Mar 04, 2004 at 20:30 UTC
    A very useful line of code. Didn't help that much in this case, but I really dig the output it gives. Thanks.

    bassplayer