Eclipse (Helios) 使用哪个密钥库?

发布于 2024-10-13 11:06:08 字数 569 浏览 1 评论 0 原文

我正在尝试在 Eclipse 中运行 Jersey 客户端类,其中服务器需要证书。我获取了证书,但无法弄清楚将其导入哪个密钥库。在我的 Eclipse 配置中,我将 java.home 设置为 C:\Java\jdk1.6.0_18\jre

在我的 C:\Java\jdk1.6.0_18\jre\lib\security 文件夹中,我有一个 cacerts 和一个 jssecacerts 文件。我已将证书导入到两者中,重新启动 Eclipse,当我作为 Java 应用程序运行客户端类时,出现此错误:

com.sun.jersey.api.client.ClientHandlerException: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative names present

然后我将证书安装在 C:\Java\jdk1.6.0_18\jre\lib\jssecacerts 中,重新启动Eclipse,仍然出现同样的错误。

Eclipse 使用哪个密钥库???

I am trying to run a Jersey client class in Eclipse where the server requires a certificate. I grabbed the certificate, but can't figure out which keystore to import it into. In my Eclipse config, I have the java.home set to C:\Java\jdk1.6.0_18\jre

In my C:\Java\jdk1.6.0_18\jre\lib\security folder I have a cacerts and a jssecacerts file. I've imported the cert into both, restarted Eclipse and when I run the client class, as a Java Application, I get this error:

com.sun.jersey.api.client.ClientHandlerException: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative names present

I then installed the cert in C:\Java\jdk1.6.0_18\jre\lib\jssecacerts, restarted Eclipse and still get the same error.

Which keystore does Eclipse use????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

波浪屿的海角声 2024-10-20 11:06:08

我的问题是(自签名)证书存在身份不匹配错误。该证书适用于预生产服务器。为了解决这个问题,我结合使用了 http: //jcalcote.wordpress.com/2009/06/18/java-https-client-issues/ (DumbX509TrustManager) 和 http://blogs.oracle.com/enterprisetechtips/entry/consuming_restful_web_services_with 为我们的实验室环境创建解决方法。

My issue turned out to be that the (self-signed) cert had identity mis-match errors. The cert is for a pre-production server. To get around this, I used a combination of tips from http://jcalcote.wordpress.com/2009/06/18/java-https-client-issues/ (DumbX509TrustManager) and http://blogs.oracle.com/enterprisetechtips/entry/consuming_restful_web_services_with to create a workaround for our lab environment.

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