ColdFusion 访问安全 Web 服务

发布于 2024-11-27 13:47:44 字数 102 浏览 0 评论 0原文

我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

段念尘 2024-12-04 13:47:44

如果 SSL 证书是自签名的,您需要下载它并将其安装在 CF 的密钥库中:

  1. 在 IE 中,转到可用证书的页面。
  2. 单击 URL 位置旁边的锁图标
  3. 选择“查看证书”
  4. 单击“详细信息”选项卡
  5. 单击“复制到文件”按钮
  6. 在向导的第 2 步中,选择“Base-64 编码的 x.509 (.cer)”选项。
  7. 在步骤 3 中找到安全文件夹的位置。这应该位于 /ColdFusion8/runtime/jre/lib/security/ 中
    使用您选择的名称保存证书
  8. 在 JRE/bin 内,您将找到一个名为 keytool.exe 的应用程序,它可以导入此证书
    证书。执行以下命令,将“MyCert”替换为您提供的名称
    证书:
    一个。 keytool -import -trustcacerts -keystore cacerts -storepass changeit -noprompt -
    alias mycert -file mycert.cer
  9. 您应该收到一条消息“证书已添加到密钥库”

有关 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:

  1. In IE go to a page where the cert is available.
  2. Click on the lock icon next to the URL location
  3. Select “View Certificates”
  4. Click the “Details” tab
  5. Click the “Copy to File” button
  6. In step 2 of the wizard select the “Base-64 encoded x.509 (.cer)” option.
  7. In step 3 find the location of your security folder. This should be in /ColdFusion8/runtime/jre/lib/security/
    Save the cert with a name of your choosing
  8. Inside the JRE/bin you will find a application called keytool.exe which can import this
    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
  9. You should receive a message that “Certificate was added to keystore”

For more information on the Java Keytool see:
http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/keytool.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文