in reply to Re^4: LWP::UserAgent Authentication
in thread LWP::UserAgent Authentication

The response headers will give away more clues about required authentication, try to insert this into your code:
$response = $ua->request( <-- your details go here my @headers = $response->header_field_names(); foreach my $h (@headers) { print "$h = ",$response->header($h),"\n"; }
In particular investigate the output for the WWW-Authenticate header.

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.