XIC: How to disable TLS 1.0 and 1.1 in JAVA 8

XIC: How to disable TLS 1.0 and 1.1 in JAVA 8

TLS 1.0 and 1.1 can be disabled in JAVA 8 by making a change to the java.security file.
 

Edit /security/java.security in JDK 8 and add TLS 1.0 and TLS 1.1 to the jdk.tls.disabledAlgorithms property by appending the following:

 TLSv1, TLSv1.1  

If the current value is:

 jdk.tls.disabledAlgorithms=SSLv3, RC4, DES, MD5withRSA, DH keySize < 1024, \    EC keySize < 224, 3DES_EDE_CBC, anon, NULL

The new value would be:
 jdk.tls.disabledAlgorithms=SSLv3, RC4, DES, MD5withRSA, DH keySize < 1024, \    EC keySize < 224, 3DES_EDE_CBC, anon, NULL, TLSv1, TLSv1.1  Once the change has been made to the NonStop, corresponding TLS changes should be made to the client where the identify provider resides and XIC should be restarted.   If you are unable to locate the solution needed or if you need additional assistance please Click Here to open a case from our Customer Care Portal.