使用https协议使用Webservice
我想从 java 客户端通过 https 使用 Web 服务。 为了做到这一点,我需要采取哪些步骤?
I want to consume a web service over https from a java client.
What steps will i need to take in order to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
布莱尔说得对。 尽管如此,请使用 SoapUI 进行尝试,它是一个 Web 服务测试客户端。 这是一个开源实用程序:因此您有机会了解其幕后工作原理。
Blair says it right. all the same, try it out using SoapUI , which is a web service test client. This is an open source utility : so you get a chance to see how things work under the covers.
您可能需要使用 keytool 命令信任服务器的 SSL 证书。 我通常发现有必要运行这样的东西:
You may need to use the keytool command to trust the server's SSL certificate. I've generally found that it is necessary to run something like this:
实际上,这与通过 HTTP 使用 Web 服务应该没有太大区别。 最重要的是调用 Web 服务的进程必须信任服务器的 SSL 证书。 如果证书是从知名的证书颁发机构购买的,那么这通常不是问题。 否则,客户端将希望信任根证书或与服务器的完全限定主机名关联的证书。
Really, there shouldn't much different from consuming a web service over HTTP. The big thing is that the process calling the web service will have to trust the server's SSL certificate. If the certificate was purchased from a well-known certificate-issuing authority, this usually isn't a problem. Otherwise, the client will want to either trust the root certificate, or the certificate associated with the server's fully qualified host name.