Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Metabase-Client-Simple CPAN distribution.

Report information
The Basics
Id: 59314
Status: resolved
Priority: 0/
Queue: Metabase-Client-Simple

People
Owner: Nobody in particular
Requestors: bohica [...] ntlworld.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.007
Fixed in: (no value)



Subject: Does not support HTTP proxy
Just upgraded to CT 2 and trying to get my smoker running again. We use an HTTP proxy server here so Metabase::Client::Simple did not work. I had to change _http_request to: my $ua = LWP::UserAgent->new; $ua->env_proxy; #LWP::UserAgent->new->request($request); $ua->request($request); to get it to work. Martin -- Martin J. Evans Wetherby, UK
Same here, I just stuck the option in the new call to avoid the extra temp: /cygdrive/e/perl/usr_lib/Metabase/Client/Simple.pm It is *really* nice to be able to participate in CPAN Testers without having ones own mail domain or becoming a mail-smtp-ssl-hacker to get things working! Thanks, CT2.0 developers all! On Tue Jul 13 05:56:34 2010, MJEVANS wrote: Show quoted text
> Just upgraded to CT 2 and trying to get my smoker running again. We use > an HTTP proxy server here so Metabase::Client::Simple did not work. I > had to change _http_request to: > > my $ua = LWP::UserAgent->new; > $ua->env_proxy; > #LWP::UserAgent->new->request($request); > $ua->request($request); > > to get it to work. > > Martin
Yeah, pasted the wrong selection: LWP::UserAgent->new('env_proxy'=>1)->request($request); Sorry... On Tue Jul 13 09:43:31 2010, CHM wrote: Show quoted text
> Same here, I just stuck the option in the new call > to avoid the extra temp: > > /cygdrive/e/perl/usr_lib/Metabase/Client/Simple.pm > > It is *really* nice to be able to participate in CPAN > Testers without having ones own mail domain or becoming > a mail-smtp-ssl-hacker to get things working! > > Thanks, CT2.0 developers all! > > On Tue Jul 13 05:56:34 2010, MJEVANS wrote:
> > Just upgraded to CT 2 and trying to get my smoker running again. We use > > an HTTP proxy server here so Metabase::Client::Simple did not work. I > > had to change _http_request to: > > > > my $ua = LWP::UserAgent->new; > > $ua->env_proxy; > > #LWP::UserAgent->new->request($request); > > $ua->request($request); > > > > to get it to work. > > > > Martin
>
Thanks. Fixed in the latest release to CPAN (0.008)