Re: Question about Installed Packages

2006-10-20 Thread Rob Dixon
Chris Share wrote: Rob Dixon wrote: Chris Share wrote: I'm trying to implement the following code: ## require LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->timeout(10); $ua->env_proxy; my $response = $ua->get('http://search.cpan.

Re: Question about Installed Packages

2006-10-20 Thread Derek B. Smith
--- Chris Share <[EMAIL PROTECTED]> wrote: > Thanks for the info. Isn't this what the Perl > Package Manager is for? > > Rob Dixon wrote: > > Chris Share wrote: > > > >> I'm trying to implement the following code: > >> > >> > ## > >> > >> requ

Re: Question about Installed Packages

2006-10-20 Thread Chris Share
Thanks for the info. Isn't this what the Perl Package Manager is for? Rob Dixon wrote: Chris Share wrote: I'm trying to implement the following code: ## require LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->timeout(10); $ua->env_pr

Re: Question about Installed Packages

2006-10-20 Thread Rob Dixon
Chris Share wrote: I'm trying to implement the following code: ## require LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->timeout(10); $ua->env_proxy; my $response = $ua->get('http://search.cpan.org/'); if ($response->is_success) {

Question about Installed Packages

2006-10-20 Thread Chris Share
I'm trying to implement the following code: ## require LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->timeout(10); $ua->env_proxy; my $response = $ua->get('http://search.cpan.org/'); if ($response->is_success) { print $response