连接到 WCF 的匿名客户端
Microsoft 的这篇文章详细介绍了如何使用匿名客户端实现传输安全。
http://msdn.microsoft.com/en-us/library/ms729789。 aspx
我想知道是否可以通过使用 netTcpBinding 而不是 WsHttpBinding 并将该服务托管为 Windows 服务来实现相同的目标。
This article from Microsoft details how to implement transport security with an anonymous client.
http://msdn.microsoft.com/en-us/library/ms729789.aspx
I'd like to know if it is possible to achieve the same goal, using netTcpBinding instead of WsHttpBinding and hosting the service as a Windows Service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,我不明白为什么这不能通过 netTcp 绑定工作。 默认情况下,netTcp 已使用传输级别安全性,但也使用 Windows 凭据。 只要把它们关掉,你就可以开始了。
Yes, I don't see any reason why this wouldn't work over netTcp Binding. By default, netTcp is using transport level security already, but also Windows credentials. Just turn those off, and you should be good to go.
我从来没有这样做过,但是你不能将客户端身份验证设置为“无”吗?
I've never done it, but can't you just set the Client Authentication to None?