通过 SSL 进行 Web 服务身份验证
我有不同的网站调用我的具有 SSL 的网络服务 (C#)。我如何检查我的网络服务器,调用站点是否有 SSL,以及它是否返回数据,否则会出现错误消息。
I have different websites calling my webservice (C#) that has SSL. How can I check in my webserver if the calling site has SSL and if it does return data otherwise error message.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在 IIS 中的网站上配置以下内容来强制连接仅采用 SSL:
在 IIS6 中,转到“目录安全性”->“目录安全性”。 “安全通信”下的“编辑”并选中“需要安全通道 (SSL)”
在 IIS7 的功能视图中,转到 SSL 设置,单击“强制 SSL”
You can force the connection to only be SSL by configuring the following on your website in IIS:
In IIS6, go to Directory Security -> "Edit" under Secure communications and check "Require secure channel (SSL)"
In IIS7, in the features view, go to SSL Settings, click "Force SSL"