http://qs321.pair.com?node_id=20225

RichardH has asked for the wisdom of the Perl Monks concerning the following question:

Does the LWP::Simple library care if you pass it an https url? One of our third-party contractors has a function that we can call over https connection. Up till now we have been using http, and LWP::Simple has been more than adequate, but because of the nature of this new function (it is essentially a delete record function) their people want it to be over a secure connection.

Replies are listed 'Best First'.
Re: LWP and HTTPS
by btrott (Parson) on Jun 28, 2000 at 22:33 UTC
    LWP::UserAgent (which I believe LWP::Simple is built on top of) can handle the HTTPS protocol if you have Net::SSL or IO::Socket::SSL. You'll probably need to install Crypt::SSLeay or IO::Socket::SSL.