Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Will the LWP timeout trigger if some data has been sent, and data communication has been interrupted for x seconds?

I've been using the following code for getting hosted data from a timer controlled field station:
use LWP::Simple; my $url = 'http://site.com/file.html'; print "Getting\n"; my $content = get $url; print "Done\n";
The problem is that sometimes it hangs on the get$url, and never comes back
Getting Done Getting Hang
It's an occasional glitch, but hangs my perl script entirely. I believe that the problem is that the webserver that I am collecting data from might be getting powered off before all of the data is sent back to my perl script, so my perl script is hanging for MORE data after getting the starting few bytes.
I have moved to LWP::agent using code ripped from:
#http://www.utsc.utoronto.ca/~harper/cscb09/lecture11.html
use LWP::UserAgent; use LWP; $ident = "The Server"; # this gets logged $timeout = 5; # in seconds $ua = new LWP::UserAgent; # call the constructor $ua->agent($ident); # set the id $ua->timeout($timeout); # timeout my $req = new HTTP::Request GET => 'http://site.com';
Will the timeout used here timeout even after getting some parts of the data, or will it only timeout if it doesn't get anything?

In reply to Get Timout with LWP by ecuguru

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (7)
As of 2024-04-24 09:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found