Subject: | Web tests don't work behind a firewall |
The usual issue <sigh>: LWP::UserAgent doesn't check for proxies by
default so you have to include a call to env_proxy e.g.
--- Web.pm.orig 2006-01-16 10:35:59.000000000 +1100
+++ Web.pm 2006-01-16 10:33:36.000000000 +1100
@@ -22,6 +22,7 @@
$self->{CACHE} = {};
$self->{PARSER} = WebService::CIA::Parser->new;
$self->{UA} = LWP::UserAgent->new;
+ $self->{UA}->env_proxy;
bless ($self, $class);
return $self;