Code is very simple
use SOAP::Lite; my $proxy="https://some/address"; my $client = SOAP::Lite->proxy( $proxy ); ... my $response; eval { $response = $client->call( $method => @params ) };
I've turned on debug on IO::Socket::SSL and its output is sort of like this
DEBUG: .../IO/Socket/SSL.pm:1596: new ctx 73492512 DEBUG: .../IO/Socket/SSL.pm:338: socket not yet connected DEBUG: .../IO/Socket/SSL.pm:340: socket connected DEBUG: .../IO/Socket/SSL.pm:358: ssl handshake not started DEBUG: .../IO/Socket/SSL.pm:406: set socket to non-blocking to enforce + timeout=30 DEBUG: .../IO/Socket/SSL.pm:419: Net::SSLeay::connect -> -1 DEBUG: .../IO/Socket/SSL.pm:429: ssl handshake in progress DEBUG: .../IO/Socket/SSL.pm:439: waiting for fd to become ready: SSL w +ants a read first DEBUG: .../IO/Socket/SSL.pm:459: socket ready, retrying connect DEBUG: .../IO/Socket/SSL.pm:419: Net::SSLeay::connect -> -1 DEBUG: .../IO/Socket/SSL.pm:429: ssl handshake in progress DEBUG: .../IO/Socket/SSL.pm:439: waiting for fd to become ready: SSL w +ants a read first DEBUG: .../IO/Socket/SSL.pm:459: socket ready, retrying connect DEBUG: .../IO/Socket/SSL.pm:419: Net::SSLeay::connect -> 1 DEBUG: .../IO/Socket/SSL.pm:474: ssl handshake done DEBUG: .../IO/Socket/SSL.pm:1633: free ctx 73492512 open=73492512 DEBUG: .../IO/Socket/SSL.pm:1641: OK free ctx 73492512
so I think that remote server administrator is a litle bit wrong. Furthermore, I'm going to add ssl_opts to my soap client transport for next tests.
$client->transport->ssl_opts( SSL_session_cache_size => 0, )
I hope it will help me :)

In reply to Re^2: SOAP::Lite. Flush ssl session by schetchik
in thread SOAP::Lite. Flush ssl session by schetchik

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.