in reply to Mechanize and cookies

You could try sending the Cookie header with HTTP::Request::Common
use HTTP::Request::Common qw(GET); use LWP::UserAgent; my $ua = new LWP::UserAgent; my $res = $ua->request( GET 'url', Cookie => 'SiteUser=asfasfasfsf23233', );