http://www.perlmonks.org?node_id=1025172


in reply to XML-RPC over HTTPS

Frontier::Client seems to use LWP::UserAgent as its transport provider. If that really is so, simply using the https:// URL should Just Work, provided you have the appropriate HTTPS libraries installed. See Mozilla::CA and LWP::Protocol::https.

Replies are listed 'Best First'.
Re^2: XML-RPC over HTTPS
by packetstormer (Monk) on Mar 24, 2013 at 17:51 UTC
    Thanks. Problem now is the server cert is not issued by a reconised CA. With LWP::UserAgent I could just set the SSL_verify_mode to 0 but I am not sure how I do this before Frontier::Client calls it???

      I recommend properly managing your SSL chain and importing the certificate into the PEM file of Mozilla::CA instead of switching off verification.