Does anyone maintain a list of which OpenSSL/Crypt::SSLeay/LWP versions work together on which platforms? I know that's probably asking for a lot but I figure it can't hurt to ask.
I do use the three together but I've had many different types of problems trying to use more recent versions of each. I invariably have to back off one or the other a few versions to get them to play well together. I'm on Solaris. Right now, I'm working but I get errors from LWP::UserAgent under some load conditions. UserAgent's header shows this version: # $Id: UserAgent.pm,v 1.77 2001/03/14 20:48:19 gisle Exp $ Periodically I get this error: Can't call method "request" on an undefined value at /usr/local/lib/perl5/site_perl/5.6.1/LWP/UserAgent.pm line 227. If I change line 215 from this: if ($@) to this: if ($@ || !defined($response) ) I just get an internal server error I can recover from. But it would seem to indicate a socket read issue with the underlying SSL code somewhere -- the code in the eval is resulting in an undefined $response sometimes without setting $@. ---- Steve Sapovits Global Sports Interactive Work Email: [EMAIL PROTECTED] Home Email: [EMAIL PROTECTED] Work Phone: 610-491-7087 Cell: 610-574-7706 Pager: 877-239-4003 > -----Original Message----- > From: Gisle Aas [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, December 11, 2001 4:47 PM > To: Rodent of Unusual Size > Cc: Libwww Perl Mailing List > Subject: Re: HEAD https://foo/ and 'not supported' > > Rodent of Unusual Size <[EMAIL PROTECTED]> writes: > > > Gisle Aas wrote: > > > > > > Rodent of Unusual Size <[EMAIL PROTECTED]> writes: > > > > > > > When I try the (LWP 5.62) HEAD shortcut against an SSL site: > > > > > > > > HEAD https://foohost/ > > > > > > > > I get '501 Protocol scheme 'https' is not supported'. If I do > > > > > > This works when you have installed some SSL module, like Crypt-SSLeay. > > > > Uh? Some *Perl* SSL module? Or a backend library? I have OpenSSL > > installed, but no Perl SSL modules. > > Read http://search.cpan.org/doc/GAAS/libwww-perl-5.62/README.SSL > > --Gisle
