3

在我的机器上,我发现 Chrome 中没有调用 SignalR 客户端函数。

我的 SignalR 测试应用程序在我的 iphone 上与 IE9、Firefox 甚至 Safari 兼容。看看 Fiddler,这些浏览器似乎都在协商 transport=longPolling。但是 Chrome 与 transport=serverSentEvents 协商连接,我假设这就是 Chrome 中不调用客户端函数的原因。

更多详细信息: 我在 Windows 7 上使用完整的 IIS(不是 IIS express)。我使用的是 SignalR 版本 1.0.0-rc2。我已经禁用了我的 AVG 防火墙并且 Windows 防火墙没有运行。Chrome 的版本是 24.0.1312.56,在撰写本文时是最新的。该应用程序在本地主机上调用。

在 Chrome 上,signalR 连接似乎正常进行 - 调用了 $.connection.hub.start().done 回调函数。但在那之后,客户端函数永远不会被调用,即使其他浏览器工作得很好。

在客户端代码中,我打开了日志记录

$.connection.hub.logging = true;

我可以在 Chrome 的 javascript 控制台中看到与成功连接相对应的日志消息。作为参考,这些日志消息是

[20:22:16 GMT+0800 (W. Australia Standard Time)] SignalR: Negotiating with '/SignalRChat-RC/signalr/negotiate'. jquery.signalR-1.0.0-rc2.js:54
[20:22:16 GMT+0800 (W. Australia Standard Time)] SignalR: Attempting to connect to SSE endpoint 'http://localhost/SignalRChat-RC/signalr/connect?transport=serverSentEvents&…7-22c5dbf27e0d&connectionData=%5B%7B%22name%22%3A%22chathub%22%7D%5D&tid=3' jquery.signalR-1.0.0-rc2.js:54
[20:22:16 GMT+0800 (W. Australia Standard Time)] SignalR: EventSource connected jquery.signalR-1.0.0-rc2.js:54
[20:22:16 GMT+0800 (W. Australia Standard Time)] SignalR: Now monitoring keep alive with a warning timeout of 40000 and a connection lost timeout of 60000 jquery.signalR-1.0.0-rc2.js:54

但是当调用客户端方法时,Chrome 的 javascript 控制台中没有记录任何消息。

有趣的是,发送方法在 Chrome 上运行良好。其他客户端显示从 Chrome 发送的消息,即使 Chrome 本身看不到它。该应用程序几乎是来自http://www.asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr的 signalR 教程中的聊天应用程序

如果我在 start 方法中明确指定 longPolling,即

$.connection.hub.start({ transport: 'longPolling' })

然后 Chrome 工作正常。但我的期望是我应该能够允许浏览器协商它们的连接,并且一切都会正常工作。

作为参考,我的客户端代码的相关部分如下所示:

$(function () {
    // Turn on logging to the javascript console
    $.connection.hub.logging = true;

    // set up an error-handling function
    $.connection.hub.error(function (err) {
        alert("Error signalR:" + JSON.stringify(err));
    });

    // Declare a proxy to reference the hub.  
    var chat = $.connection.chatHub;

    // Create a function that the hub can call to broadcast messages.
    // This function is never called when running in Chrome with the default signalR connection
    chat.client.broadcastMessage = function (name, message) {
        // Html encode display name and message.  
        var encodedName = $('<div />').text(name).html();
        var encodedMsg = $('<div />').text(message).html();
        // Add the message to the page.  
        $('#discussion').append('<li><strong>' + encodedName
            + '</strong>:&nbsp;&nbsp;' + encodedMsg + '</li>');
    };

    // Get the user name and store it to prepend to messages. 
    $('#displayname').val(prompt('Enter your name:', ''));
    // Set initial focus to message input box.   
    $('#message').focus();

    // Start the connection. 
    // Use $.connection.hub.start({ transport: 'longPolling' }) for reliability
    // Use $.connection.hub.start() to demonstrate that Chrome doesn't receive messages
    $.connection.hub.start().done(function () {
        // Enable the "Send" button
        $('#sendmessage').removeAttr('disabled');
        $('#sendmessage').click(function () {
            // Call the Send method on the hub.  
            chat.server.send($('#displayname').val(), $('#message').val());
            // Clear text box and reset focus for next comment.  
            $('#message').val('').focus();
        });
    });
});

谁能看到我做错了什么?

4

3 回答 3

2

我在 Win7 Google Chrome 24 中尝试了该示例,它运行良好。

您可以对安装Fiddler和在 javascript 中设置断点进行故障排除

POST /signalr/send?transport=serverSentEvents&connectionId=6ff0bffa-c31e-4d85-9aff-24f4528555ee HTTP/1.1
Host: localhost:43637
Connection: keep-alive
Content-Length: 113
Accept: application/json, text/javascript, */*; q=0.01
Origin: 
X-Requested-With: XMLHttpRequest
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17
Content-Type: application/x-www-form-urlencoded
Referer: /index.html
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

data=%7B%22H%22%3A%22chathub%22%2C%22M%22%3A%22Send%22%2C%22A%22%3A%5B%22gus%22%2C%22hello%22%5D%2C%22I%22%3A0%7D
于 2013-01-31T00:42:09.743 回答
0

可能与缓冲响应有关。

https://github.com/SignalR/SignalR/issues/1944

于 2013-11-23T11:59:09.100 回答
0

尝试EnableJSONP = False在服务器集线器上设置。这解决了我遇到的类似问题。

于 2016-07-11T21:22:50.253 回答