The timeout method does not appear to be working. Is this a known bug? Is there a workaround? Thank You Paul **************************************************************************** * use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->agent("$0/0.1 " . $ua->agent); $ua->timeout(10); $ua->agent("Mozilla/8.0"); # pretend we are very capable browser $req = HTTP::Request->new(GET => 'http://www.anycompany.com/'); $req->header('Accept' => 'text/html'); # send request $res = $ua->request($req); # check the outcome if ($res->is_success) { print $res->server(); #print "\n"; my $status = $res->status_line; print "$status\n"; #print $res->headers_as_string; print $res->title; #print $ua->request($req)->as_string; } else { print "Error: " . $res->status_line . "\n"; }