By default, SOAP::Lite creates new HTTP or HTTPS connections for every request. This makes long transactions run slowly, particularly over HTTPS where the SSL/TLS handshake takes place every time.

SOAP::Lite::Transport::HTTP::Client contains a hack to support the "Connection: Keep-Alive" header field in HTTP requests, but I've had no luck making it work.

LWP::UserAgent contains its own connection caching mechanism that allows it to use persistent connections. As SOAP::Lite::Transport::HTTP::Client subclasses LWP::UserAgent, we can initialise the connection cache on the SOAP transport object.

# $client should contain a SOAP::Lite client that uses HTTP/HTTPS # Cache up to 10 connections my $max_connections = 10; # Retrieve the HTTP Transport object. my $transport = $client->transport(); # Use LWP::UserAgent's conn_cache() method. $transport->conn_cache({ total_capacity => $max_connections });

In reply to Using Persistent Connections with SOAP::Lite HTTP clients by tomhukins

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.