连接到 WCF 的匿名客户端

发布于 2024-07-20 05:36:01 字数 336 浏览 11 评论 0原文

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

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

发布评论

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

评论(2

假装不在乎 2024-07-27 05:36:01

是的,我不明白为什么这不能通过 netTcp 绑定工作。 默认情况下,netTcp 已使用传输级别安全性,但也使用 Windows 凭据。 只要把它们关掉,你就可以开始了。

   <bindings>
      <netTcpBinding>
        <binding name="SecureNetTcp">
          <security mode="Transport">
            <transport clientCredentialType="None" />
          </security>
        </binding>
      </netTcpBinding>
    </bindings>

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.

   <bindings>
      <netTcpBinding>
        <binding name="SecureNetTcp">
          <security mode="Transport">
            <transport clientCredentialType="None" />
          </security>
        </binding>
      </netTcpBinding>
    </bindings>
⊕婉儿 2024-07-27 05:36:01

我从来没有这样做过,但是你不能将客户端身份验证设置为“无”吗?

I've never done it, but can't you just set the Client Authentication to None?

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