in reply to Access webpage

Howdy, your syntax is just a little off:

use IO::All; my $html < io->http("http://hgdownload.soe.ucsc.edu/database:80");

Note that the "io" is in lowercase, not upper as in your example. You also need the "->http" method, and "http://" prefix in your url.

Also, you'll have to ensure that you have the IO::All::LWP module installed.

Replies are listed 'Best First'.
Re^2: Access webpage
by CountOrlok (Friar) on Apr 05, 2013 at 03:14 UTC
    The original URL is mangled:
    use IO::All; my $html < io->http("http://hgdownload.soe.ucsc.edu:80/goldenpath/hg19 +/database");
    The :80 needs to be after the domain name, but is redundant. It is only needed if it is not port 80.