Hello monks
I am trying to create a socket and then trying to request
pages one by one( arnd 10 pages).
But only the first page contents is obtained and the rest are
not displayed at all. I am still not able to find out the reason.
When i give the pages individually, they are accessed properly
Any help

#!/usr/bin/perl -w ### Create a socket to read the pages from ISJ use IO::Socket; $sock = new IO::Socket::INET ( PeerAddr => 'www.somewhere.com', PeerPort => 80, Proto => 'tcp', Timeout => 10, ); die "Socket could not be created $!\n" unless $sock; open ( URLforSoc, "$FileCon" ) or die "Cant open the file for readi +ng!!!"; while ( <URLforSoc> ) { print $sock "GET ${URL_VAL} HTTP /1.0\n\n"; while($line = <$sock>) { print "$line"; } $sock->flush(); } close ($sock); exit 0;

Title edit by tye


In reply to socket won't let me fetch multiple web pages by Anonymous Monk

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.