ColdFusion 2021 Data Source - An SSL socket connection could not be established because JRE 1.4
I am having trouble getting the keystore to work with ColdFusion 2021. I can not seem to get past the following error:
Connection verification failed for data source: <DBName>
java.sql.SQLNonTransientConnectionException: [Macromedia][SQLServer JDBC Driver]An SSL socket connection could not be established because JRE 1.4 or above is required.
I went through the same steps that worked for ColdFusion 2018.
Using the Java Home folder from JVM Details in the Settings Summary run the following.
<JavaHome>\bin\keytool -importkeystore -srckeystore C:\ColdFusion2021\jdk-11.0.15.1\lib\security\<DBServerName>.pfx -srcstoretype pkcs12 -destkeystore C:\ColdFusion2021\jdk-11.0.15.1\lib\security\<DBServerName>.keystore -deststoretype pkcs12
When filling out the Microsoft SQL Server Data Source information I use the following Connection String.
EncryptionMethod=SSL;ValidateServerCertificate=true;TrustStore=C:\ColdFusion2021\jdk-11.0.15.1\lib\security\<DBServerName>.keystore;TrustStorePassword=<Password>;HostNameInCertificate=<hostname>
Any help would be grealy appreciated.
