in reply to lwp proxy Authentication

Don't look in $! for the error, look into $res->as_string and $res->code to see the error.

Personally, I use $ENV{HTTP_PROXY} = 'http://corion:secret@proxy'; to make my proxy and credentials known to LWP, but your approach should work in principle as well. The error message in $res should tell you a bit more.

Replies are listed 'Best First'.
Re^2: lwp proxy Authentication
by PugSA (Beadle) on Aug 22, 2006 at 11:25 UTC
    Thank you for your help I got it to work