当transport = serverSentEvents时,不调用SignalR客户端函数

时间:2013-01-24 15:10:51

标签: google-chrome signalr

在我的机器上,我发现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,在撰写本文时是最新版本。该应用程序在localhost上调用。

在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工作正常。但我的期望是我应该能够允许浏览器协商他们的连接,事情就是Just Work。

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

$(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();
        });
    });
});

有人能看出我做错了吗?

3 个答案:

答案 0 :(得分: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

答案 1 :(得分:0)

可能与缓冲响应有关。

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

答案 2 :(得分:0)

Try setting EnableJSONP = False on the server hub. This fixed a similar issue I was having.