1

因此,我试图从总体上理解 WCF,尤其是这个MSDN 聊天客户端示例。我一直在测试下面的配置,它似乎工作正常。但是,如果 Internet 连接丢失(或不存在)会怎样?同行还能找到彼此吗?(根据这个问题,我会问“路由信息的云,它协同回答”。这种情况下的“云”是否仅限于我的局域网?)

<client>
    <!-- chat instance participating in the mesh -->
    <endpoint name="ChatEndpoint"
            address="net.p2p://chatMesh/ServiceModelSamples/Chat"
            binding="netPeerTcpBinding"
            bindingConfiguration="BindingDefault"
            contract="Microsoft.ServiceModel.Samples.IChat">
    </endpoint>
 </client>


<bindings>
  <netPeerTcpBinding>
    <!-- Refer to Peer channel security samples on how to configure netPeerTcpBinding for security --> 
      <binding name="BindingDefault" port="0">
      <security mode="None"/>
      <resolver mode="Auto"/>
    </binding>
  </netPeerTcpBinding>
</bindings>

提前感谢您的帮助!

4

1 回答 1

2

他们在本地使用 SSDP 来查找位于同一子网上的对等方。这将允许对等点即使没有互联网连接也能找到彼此。

或者,您可以实现自己的“Peer Resolver”作为注册服务器。如果您需要一个示例,请发表评论,我会挖掘我的示例代码。

于 2010-02-18T20:42:59.320 回答