WCF - 具有基本身份验证的 Soap Web 服务,无 ssl,自托管
我完全意识到这种方法的不安全性,但有理由需要对 WCF 托管的 SOAP Web 服务进行基本 http 身份验证。难道真的没有办法让这个工作成功吗?我发现的每种添加基本身份验证的方法都需要传输 (https) 安全性。
I'm fully aware of the insecurity of this approach, but have a justified need for Basic http authentication for a WCF hosted SOAP webservice. Is there really no way to make this work? Every method I've found of adding basic auth requires transport (https) security.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找“TransportCredentialOnly”。请参阅这篇 MSDN 文章。
绑定将如下所示:
上面的代码片段取自 这篇关于该主题的博客文章。
I think you're looking for "TransportCredentialOnly". See this MSDN article.
The binding would then look like this:
The above code snippet was taken from this blog article on the topic.