require LWP::UserAgent;
require HTTP::Message;
$ua = new LWP::UserAgent;
$request = new HTTP::Request('GET', 'file://localhost/etc/motd');
$response = $ua->request($request); # or
$response = $ua->request($request, '/tmp/sss'); # or
$response = $ua->request($request, \&callback, 4096);
print $response->headers_as_string, "\n";
print $response->headers->header( "Set-Cookie" ), "\n";
sub callback {
my($data, $response, $protocol) = @_;
# your stuff here, like status etc.
}
Hope that helps a bit, but maybe some of the other monks with more experience will step in ;). I'm also not
really sure about the Set-Cookie header - if noone
here provides an authoritative answer, you might like to check the according RFC, that would be RFC 2616, available
here
and RFC 2817.
Another interesting thing for programmers that have to work with RFCs is the RFCsearch engine,
written in Perl :) |