I am making a robot for scanning some sites. I have come across a problem in libwww. I have refined the error case to the following small script which seg faults on my system.
Any help is appreciated. -- Anders Nielsen #!/usr/bin/perl -w use strict; use LWP::UserAgent; my $url = "http://www.finansraadet.dk/finansraadet/finans.nsf/Alle+dokumenter/Fakta%3aJob"; my $ua = LWP::UserAgent->new(); my $req = HTTP::Request->new("GET", $url); my $res = $ua->request($req);
