Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force TLS > 1.0 on AppEngine local development server in Java

we need to connect to an external service using at least TLS 1.1, which doesn't work on the local development server using the Java SDK v. 1.9.32. Is there a way to force the local dev server to use a specific version of TLS? Or is it just not supported in the Java SDK?

like image 273
lluft Avatar asked Mar 08 '16 21:03

lluft


1 Answers

My local Appengine development server started to use TLS 1.2 once I installed JDK 8 (before I was using JDK 7). JDK 8 uses TLS 1.2 by default.

like image 140
Arnaud Avatar answered Oct 05 '22 00:10

Arnaud