我使用signalR
来显示当前连接的用户。有些客户端无法看到连接的客户端,因为客户端正在取消服务器到客户端的连接,如下所示:
以下是我的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
}
这只发生在某些客户端浏览器上。
我尝试过禁用防病毒软件,防火墙,恶意软件等。但它仍无效。
有谁知道造成这个问题的原因是什么?