<<<
GIANT EDIT: The error message originally posted here had a root cause that differed from the problem description. It has now been fixed, but the LWP::UserAgent issue still persists. The issue's root cause appears to be the same: something to do with SSL.
>>>>

Using LWP::Simple, it's refusing to connect to a valid SSL endpoint... I've tried
$ua = LWP::UserAgent->new(ssl_opts => { verify_hostname => 0 });
... and ...
my $ua = LWP::UserAgent->new();
$ua->ssl_opts( SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE, SSL_hostname => '', verify_hostname => 0 );
... No luck. Any suggestions? Here's what I'm getting back:
WNS Error: HTTP::Response=HASH(0x30e7a30)->content.
$VAR1 = bless( {
'_content' => 'Can\'t connect to ___censored____.com:443

',
'_rc' => 500,
'_headers' => bless( {
'client-warning' => 'Internal response',
'client-date' => 'Tue, 10 Jun 2014 00:47:12 GMT',
'content-type' => 'text/plain',
'::std_case' => {
'client-warning' => 'Client-Warning',
'client-date' => 'Client-Date'
}
}, 'HTTP::Headers' ),
'_msg' => 'Can\'t connect to ___censored__:443',
'_request' => bless( {
'_content' => 'Test Machine - Test Company"Toast Test - Disregard this message"',
'_uri' => bless( do{\(my $o = '__censored :)__')}, 'URI::https' ),
'_headers' => bless( {
'user-agent' => 'libwww-perl/6.06',
'x-wns-cache-policy' => 'no-cache',
'x-wns-type' => 'wns/toast',
'x-wns-ttl' => 600,

I've tried setting environment variables SSL_VERIFY_NONE and PERL_LWP_SSL_VERIFY_HOSTNAME several different ways, no luck.

Any meditations from the monks?

In reply to LWP::Simple: Using the default of SSL_verify_mode of SSL_VERIFY_NONE for client is deprecated! by DaisyLou

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.