5

在 .NET 4.5 中,引入了一个新的 WCF 绑定 NetHttpBinding,它使用 WebSocket 协议作为其底层传输。这意味着这可以实现从服务器的真正推送。现在,我已经能够使用这样的回调合约进行某种推送:

[ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]
public class WebSocketSampleService : IDuplexContract
{
    public string SayHelloDuplex()
    {
        //push to the current caller
        OperationContext.Current.
            GetCallbackChannel<IDuplexCallbackContract>().
            SayingHello("Hello from WebSockets");

        //answer the current caller in the regular http way
        return "Hello";
    }
}
[ServiceContract(CallbackContract=typeof(IDuplexCallbackContract))]
public interface IDuplexContract
{
    [OperationContract]
    string SayHelloDuplex(string name);
}
[ServiceContract]
public interface IDuplexCallbackContract
{
    [OperationContract]
    void SayingHello(string message);
}

不过,我想做的是在单个客户端调用方法时向所有客户端广播消息SayHelloDuplex()。有没有办法访问所有客户端的回调通道?或者我应该记录所有客户端的回调通道以供以后在其他方法中使用(例如Connect())?也许我以错误的方式解决了这个问题?

任何帮助将不胜感激。谢谢

4

1 回答 1

4

每个客户端的回调通道都是唯一的,因此无法访问所有客户端的回调通道。

相反,您应该将每个客户端的回调通道保存在列表中,甚至更好地保存在字典中,以便您可以针对特定客户端。

然后,当您想向所有客户端广播消息时,只需查看列表即可。

于 2013-09-20T12:33:56.383 回答