I keep getting Connection Failed
when trying to request data from a page that is on an https://
domain. I did install the ssl cert using the built-in section of the railo admin at https://[mydomain]/railo-context/admin/server.cfm?action=services.certificates
however I still get Connection Failed
. How should I go forward with debugging this? I have confirmed that this server in particular does have access to the domain I am trying to request from.
Using CFHTTP with HTTPS domain in Railo
1.1k Views Asked by Kevin B At
2
There are 2 best solutions below
1

You probably need some additional certs installed as Jason has said. Take a close look at the cert and it's chain. Go to the cert issuers site and look for some documentation.
To troubleshoot you can add some logging to your jvm args. I think it's something like:
-Djavax.net.debug=all
The results are either in the OUT log or the server.log. This post on SSL 3.0 has some debugging tips. It's possible that your cert needs to handshake at a lower security level than CF allows (SSL 2.0 instead of 3.0/TLS for instance) and that could cause this behavior - but it's more likely that you simply need an intermediate cert installed.
The problem ended up being the permissions weren't setup properly on the machine. After we had the server administrator fix our permissions to access the
Railo-Tomcat Service Control
, the requests started working. I'm assuming he fixed some other permissions while he was in there.