SignalR 1.0.1“组消息”无法在生产服务器上运行

时间:2013-04-19 14:01:31

标签: c# .net asp.net-mvc-4 signalr

我在SignalR中创建了一个聊天应用程序(.NET MVC4),它在我的开发机器上运行良好。但是当我将它上传到我们的生产服务器时,我的客户端没有收到任何对“组”的调用。

当我这样做时:

var context = GlobalHost.ConnectionManager.GetHubContext<ChatHub>();
context.Clients.All.addOnline(profielidVan);

效果很好!但是当我这样做时:

var context = GlobalHost.ConnectionManager.GetHubContext<ChatHub>();
context.Clients.Group(profielidNaar).addOnline(profielidVan);

我的客户没有接到任何电话。

要连接到正确的组,我在每个SignalR连接的开头调用Hub上的一个名为Join()的函数:

$(function () {

    var chat = $.connection.Chat;

    chat.client.addOnline = function (profielid) {
        if ($("#profielidNaar").val() == profielid) {
            var now = new Date()
            $("#onlinetime").val(now);
            $('#typtbericht').html('Online');
        }
    };

    // ... code to the other jQuery functions called by SignalR ...

    $.connection.hub.start().done(function () {

         chat.server.join();

         // ... code to the page jQuery functions (like $(window).resize) ...

    }
}

服务器端代码:

[HubName("Chat")]
public class ChatHub : Hub
{
    public Task Join()
    {
        if (HttpContext.Current.User.Identity.IsAuthenticated)
        {
            Profiel_DataHelper profiel = new Profiel_DataHelper(HttpContext.Current.User.Identity.Name);
            return Groups.Add(Context.ConnectionId, profiel.ProfielID.ToString());
        }
        else
        {
            return null;
        }
    }

    ...

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

Okey,解决这个问题的原因是:

  1. 我在Hub上使用了HubName属性,这是SignalR的错误。
  2. 我使用会员提供商的昵称来查找个人资料。但由于昵称“Willem”在多个域上注册,因此返回了错误的ProfileID。
  3. 因此,如果您遇到与我相同的问题,请尝试将您的客户端添加到硬编码组(例如“test”)如果可行,那么您将知道问题在于您自己的代码。

    感谢David Fowler!