TLSv1 and TLSv1.1 algorithms can be disabled by adding them to 'jdk.tls.disabledAlgorithms' property in the 'c:\xs1\libraries\Java\jdk-11\conf\security\java.security' file in the XS1 application server.
< before > # Example: # jdk.tls.disabledAlgorithms=MD5, SSLv3, DSA, RSA keySize < 2048 jdk.tls.disabledAlgorithms=SSLv3, RC4, MD5withRSA, DH keySize < 1024, \ EC keySize < 224, DES40_CBC, RC4_40, 3DES_EDE_CBC < after > # Example: # jdk.tls.disabledAlgorithms=MD5, SSLv3, DSA, RSA keySize < 2048 jdk.tls.disabledAlgorithms=SSLv3, RC4, MD5withRSA, DH keySize < 1024, \ EC keySize < 224, DES40_CBC, RC4_40, 3DES_EDE_CBC, TLSv1, TLSv1.1
Please note that the <after> setting will disable TLSv1 and TLSv1.1 algorithms for all the java applications running on that application server.