in reply to Re: Re: lwp and IFRAME
in thread lwp and IFRAME

Ahhh, then on portal you'll have to save the login info somewhere and supply it to the other hosts. I think the key that you need to know is how to use basic auth.

Does something like this not work for you?

my $req = new HTTP::Request('GET', $url_1); $uid = 'user1'; $pass = 'pass1'; $req->authorization_basic($uid, $pass);
--traveler