Eclipse (Helios) 使用哪个密钥库?
我正在尝试在 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 使用哪个密钥库???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的问题是(自签名)证书存在身份不匹配错误。该证书适用于预生产服务器。为了解决这个问题,我结合使用了 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.