Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: LWP::Simple - so they say!

by bart (Canon)
on Apr 20, 2012 at 11:26 UTC ( [id://966178]=note: print w/replies, xml ) Need Help??


in reply to LWP::Simple - so they say!

Perhaps your webserver just doesn't respond to "HEAD" requests. Shit happens.

In that case, I'd call plain "GET" but you could abort halfway. You then will have to use a callback. See getprint (in LWP::Simple) as an example, which I have reproduced here:

sub getprint ($) { my($url) = @_; my $request = HTTP::Request->new(GET => $url); local($\) = ""; # ensure standard $OUTPUT_RECORD_SEPARATOR my $callback = sub { print $_[0] }; if ($^O eq "MacOS") { $callback = sub { $_[0] =~ s/\015?\012/\n/g; print $_[0] } } my $response = $ua->request($request, $callback); unless ($response->is_success) { print STDERR $response->status_line, " <URL:$url>\n"; } $response->code; }
You'd have to reproduce this but of course with a different callback... With die and eval BLOCK, it might just work.

Replies are listed 'Best First'.
Re^2: LWP::Simple - so they say!
by Anonymous Monk on Apr 20, 2012 at 11:52 UTC

    No need to abort with max_size

    #!/usr/bin/perl -- use strict; use warnings; use WWW::Mechanize; my $url = 'http://example.com'; my $ua = WWW::Mechanize->new( qw/ max_size 1 autocheck 1 show_progress 1 / ); eval { $ua->head($url); 1 } or $ua->get($url); print $ua->dump_headers; __END__

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://966178]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-26 08:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found