-
Hi,
My employer wants me to write a Perl-script which automatically loads page and reads some content of it into a variable. The problem is that this page has an Access Control List.
Does anybody know how to log onto this page with Perl, or fill in this dialog box of the ACL? 
All help is appreciated
----------
Thanx
Bas van der Meijden
b.vandermeijden@pecoma.nl
June 12th, 2000, 06:22 AM
-
using: LWP::UserAgent
$ua->credentials($netloc, $realm, $uname, $pass)
Set the user name and password to be used for a realm.
It is often more useful to specialize the
get_basic_credentials() method instead.
I think that might be what you want?