-----------------------------
Please read the FAQ!
<http://java.apache.org/faq/>
-----------------------------

>      Thanks for your help, I need more explanation because I'm pretty new to
> Perl.
> If you give small code example I'll greately appreciate it.

I'm not Jon or Steve, but here's a trivial example. Once you install LWP
(libwww-perl) and read the perldoc's, you'll see all the nifty things you
can do.

use LWP;
my $ua=LWP::UserAgent->new();
my $req=HTTP::Request->new(GET=>'http://myhost.com/servlets/SomeServlet');
my $res=$ua->request($req);
print $res->content();

--
Guy "Smiley" McArthur
[email] [EMAIL PROTECTED]  [web] www.seds.org/~smiley   [icq] 17470307
"That's one small step for The Man..."





--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html/>
Problems?:           [EMAIL PROTECTED]

Reply via email to