ColdFusion 访问安全 Web 服务
我尝试使用 CFML 中的 cfhttp 标签访问安全 Web 服务,但收到以下错误:
“无法建立 SSL/TSL 安全通道的信任关系。”
有人可以帮忙吗?
I am trying to access a secure web service using cfhttp tag in CFML but I am getting the following error:
"Could not establish the trust relationship for the SSL/TSL secure channel."
Can anyone please help??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 SSL 证书是自签名的,您需要下载它并将其安装在 CF 的密钥库中:
使用您选择的名称保存证书
证书。执行以下命令,将“MyCert”替换为您提供的名称
证书:
一个。 keytool -import -trustcacerts -keystore cacerts -storepass changeit -noprompt -
alias mycert -file mycert.cer
有关 Java Keytool 的更多信息,请参阅:
http://java.sun.com/j2se/1.4 .2/docs/tooldocs/windows/keytool.html
Is the SSL cert is self-signed you will need to download it and install it in CF's keystore:
Save the cert with a name of your choosing
cert. Execute the following command replacing “MyCert” with the name you gave
the cert:
a. keytool -import -trustcacerts -keystore cacerts -storepass changeit -noprompt -
alias mycert -file mycert.cer
For more information on the Java Keytool see:
http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/keytool.html