Java, Apache HttpClient, TLSv1.2 & OpenJDK 7
We have a small group of Tomcat servers running OpenJDK v1.7.0_111. We have plans to upgrade them and migrate them this summer but we've found that a client API we interact with is moving to require TLSv1.2 in the near term. My ultimate desire is to find a configuration change to allow for this. The application hosted there creates it's SSL context in a pretty straight forward way: SSLContext sslContext = SSLContexts.createDefault() SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext); SSLContexts is from Apache's httpclient library (version 4.4.1) and is also pretty