客户端取消的信号器服务器消息(仅限特定客户端)

时间:2017-01-19 11:57:10

标签: signalr signalr-hub

我使用signalR来显示当前连接的用户。有些客户端无法看到连接的客户端,因为客户端正在取消服务器到客户端的连接,如下所示:

enter image description here

以下是我的js代码:

        var progressNotifier = $.connection.activeConnectionsHub;
        $.connection.hub.start().done(function () {
            progressNotifier.server.showActiveConnections();

                   // code here
        });

        // client-side sendMessage function that will be called from the server-side
        progressNotifier.client.addConnections = function (param) {
                // code here never gets called
       }

这只发生在某些客户端浏览器上。

我尝试过禁用防病毒软件,防火墙,恶意软件等。但它仍无效。

有谁知道造成这个问题的原因是什么?

0 个答案:

没有答案