如何使用 ssl 证书通过 https:// 连接到 web 服务
我是这个领域的新手...如何使用带有 ssl 的证书通过 https:// 连接到 web 服务?需要遵循哪些必要步骤。我已经有一个已安装在远程服务器上的签名证书。
有什么想法吗?
我想在 C# 中执行此操作。我应该使用 OpenSSL.NET 吗?
亲切的问候,
埃里克·卡里霍
I am a newbie in this area... How to use a certificate with ssl to connect to webservice via https:// ? What are the neccesary steps to follow. I already have a signed certificate which is already installed on the remote server.
Any idea?
I would like to do this in c#. Should I use OpenSSL.NET ?
Kind regards,
Eric Karijo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 C# ,则
HttpWebRequest
类具有clientCertificates
集合属性。简而言之,您在发送请求之前将您的证书添加到此集合中。您可能想要按照
在 C# 中存储/分发客户端证书:
集合发送请求
所以(抱歉,如果这不是 100%):
If you are using C# , the
HttpWebRequest
class has aclientCertificates
collection property. In short, you add your certificate to this collection before sending the request.You would want to do some flow along the lines of
in C#:
collection send request
So (sorry if this isn't 100%):