Enabling TLS v1 for Enterprise Server Prior to 9.2.5

Only TLS v1 is supported on Enterprise Server prior to 9.2.5. Therefore, if you are using Enterprise Server prior to 9.2.5 and if you are using JDK/JRE where TLS v1 is set as a disabled algorithm in the java.security file, you must remove it from the list of disabled algorithms to enable TLSv1 to communicate with the Enterprise Server, JDENET.

Note: You must enable TLS v1 in the java.security file for all the servers in the JD Edwards EnterpriseOne environment as well as all the clients that communicate with the Enterprise Server if they are on the same JDK CPU release, including the Server Manager Console, Server Manager Agent, EnterpriseOne web client, EnterpriseOne development client, EnterpriseOne Server, AIS Server, Business Services Server, and so on.

In the following example, TLS v1 is set as a disabled algorithm in the java.security file:

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

To enable the TLS v1 algorithm, you must remove it from the disabled algorithms list as shown in the following example:

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