I have a java code developed in jdk 1.7version which supports TLS1.1. Recently my company has implemented TLS1.2 in the server. Any suggestion or inputs on how to enable/implement TLS1.2 in my existing java code with out re-writing every thing from scratch in jdk1.8.
Here are the few things i tried to implement inside the java code but didn't work out.
String check="TLSv1.2";
Properties prop = new Properties();
prop.setProperty("https.protocols", check);
I have deployed the java code in jboss server and jboss version is jboss-as-7.1.1.Final
Any inputs/suggestion would really helpful.
Thanks & Regards, Sameet.