我在 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 连接开始时调用集线器上的一个名为 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;
}
}
...
谁能帮我吗?