Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Client-side TLS session ticket support in Java 7

I want to make a large number of small HTTP requests from a client machine running Java 7 to an external web server over TLS and I would like to use session resumption to make this as efficient as possible.

The web server, however, only appears to support session resumption via the TLS session ticket extension, and so far, I have not seen any documented way of enabling this feature in the javax.net.ssl package.

Does the Java 7 TLS implementation support TLS session tickets on the client side? And if not, could anyone suggest a 3rd party library which does?

Many thanks

like image 993
deeMo Avatar asked Apr 13 '15 16:04

deeMo


1 Answers

It looks as if this isn't even supported on Java 8 and has not been explicitly listed for Java 9.

like image 98
Philippe Marschall Avatar answered Oct 01 '22 17:10

Philippe Marschall