in reply to My first LWP script
You can also use HTTP::Request::Common to perform the automatic login process.
use HTTP::Request::Common; use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->request(POST 'http://url/loginscript', [ username => 'yourusernam +e', password => 'yourpassword' ]);
- Ralph.
|
|---|