不存在主题备用名称添加例外
我正在使用 Java SE6 Mustang,并且正在尝试连接到使用 SSL 的 Web 服务。我使用 wsimport 创建了 Web 服务客户端,我可以忽略异常:
javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: 没有主题备用名称
I'm using Java SE6 Mustang and I'm trying to connect to a Web Service that uses SSL. I created the Web Service Client with wsimport, can I ignore the Exception:
javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative names present
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不能忽略这个异常。
如果您在创建客户端时遇到此错误,您可以下载 WSDL 并使用它来执行生成。像这样的东西。但我不检查它。
但如果您在访问 Web 服务时遇到此错误,您可以禁用主机名检查。
这是禁用主机名检查的示例。
No you cannot ignore this exception.
If you get this error while creating client, you can download WSDL and execute generation by using it. Something like this. But i not check it.
But if you get this error while accessing to web service, you can disable hostname chekcing.
Here is an example to disable hostname checking.