-start-
>   "Matthew Rochlin" <[EMAIL PROTECTED]>
>at    05/29/2000 07:11 AM

If you look carefully at the docs in LWP::Parallel you'll notice you 
haven't followed the example precisely.

>foreach (keys %$entries) {
>my $res = $entries->{$_}->response;

$entries->{$_}->response returns an HTTP::Response object to $res.

>print "Answer for '",$res->request->url, "' was \t", $res->code,": ",
>         $res->message,"\n";
>print $entries->{$_}->content; 

Therefore here you need to use 

print $res->content;

(See the docs for HTTP::Response for related methods).

Grant Hopwood.
Valero Energy Corp.
(210)370-2380
PGP Public Key: Ldap://certserver.pgp.com

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to