I want to make a large number of small HTTP requests from a client machine from Java 7 to an external web server via TLS, and I would like to use session resumption to make this as efficient as possible.
However, only the web server supports session renewal through the extension of the TLS session ticket, and so far I have not seen a documented way to include this function in the javax.net.ssl package.
Is Java 7 TLS support for client-side TLS sessions? And if not, can someone suggest a third-party library that does?
Thank you very much
deeMo source share