使用https协议使用Webservice

发布于 2024-07-05 11:35:51 字数 58 浏览 9 评论 0原文

我想从 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 技术交流群。

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

发布评论

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

评论(3

不爱素颜 2024-07-12 11:35:52

布莱尔说得对。 尽管如此,请使用 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.

路还长,别太狂 2024-07-12 11:35:51

您可能需要使用 keytool 命令信任服务器的 SSL 证书。 我通常发现有必要运行这样的东西:

keytool -importcert -v -trustcacerts -alias ServerName -file server_cert_file.crt -keystore client_keystore_file

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:

keytool -importcert -v -trustcacerts -alias ServerName -file server_cert_file.crt -keystore client_keystore_file
酒废 2024-07-12 11:35:51

实际上,这与通过 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.

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