in reply to HTTPS Problem
What version of LWP are you using? You can check via:
perl -MLWP -E'say(LWP->VERSION)'
As of LWP 6.02, you need to install LWP::Protocol::https separately to get HTTPS support. (LWP::Protocol::https used to be bundled with LWP, but as far as I understand it, has been unbundled because it has some heavy dependencies.)
Assuming you're on a Linux/Unix-based machine, you can probably find LWP::Protocol::https through your package manager, or if not, you can probably install it using CPAN:
sudo cpan LWP::Protocol::https
By the way, your debugging output is fairly useless. You might want to try something like:
printf LOGFILE "%s\t\tDEBUG: %s\n", localtime(), $response->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: HTTPS Problem
by jfalck (Initiate) on Apr 24, 2012 at 00:49 UTC | |
by jfalck (Initiate) on Apr 24, 2012 at 03:48 UTC |