Connection Failure. Status code unavailable on ColdFusion 8
We are trying to execute a REST API call (particulary GET) using CFHTTP tag as below :
<cfhttp
url="https://reqres.in/api/users/2"
method="GET"
result="remoteCallResult" >
<cfhttpparam type="header" name="accept-encoding" value="*" />
<cfhttpparam type="header" name="TE" value="deflate;q=0" />
</cfhttp>
<cfdump var="#remoteCallResult#">
The URL "https://reqres.in/api/users/2 " is a public url and it responds with below content :
{"data":{"id":2,"first_name":"Janet","last_name":"Weaver","avatar":"https://s3.amazonaws.com/uifaces/faces/twitter/josephstein/128.jpg"}}
When CFHTTP tag is being used, I consistently see below error on my webpage :

Above issue persists, even after installing the certificate from "reqres.in" into cacerts of JAVA_HOME.
Can you please help me here?
Environment Details are :
Cold Fusion 8
ColdFusion JRE
Windows 7 Enterprise 64 Bit
