来自集线器外部的SignalR广播不起作用

时间:2012-11-30 06:28:56

标签: c# asp.net-mvc signalr

根据此处的wiki文章:https://github.com/SignalR/SignalR/wiki/Hubs

我能够通过我的集线器获取我的MVC应用程序来广播消息:

$(function () {
    // Proxy created on the fly          
    var chat = $.connection.chatterBox;

    // Declare a function on the chat hub so the server can invoke it          
    chat.client.addMessage = function (message) {
        $('#messages').append('<li>' + message + '</li>');
    };

    // Start the connection
    $.connection.hub.start().done(function () {
        $("#broadcast").click(function () {
            // Call the chat method on the server
            chat.server.send($('#msg').val());
        });
    });
});

My Hub位于名为ServerHub.dll的独立DLL中,如下所示

namespace ServerHub
{
    public class ChatterBox : Hub
    {

        public void Send(string message)
        {
            Clients.All.addMessage(message);
        }
    }
}

通过上面的设置,我可以在几个不同的浏览器上浏览相同的URL,并从一个浏览器发送消息,将反映在所有其他浏览器中。

但是,我现在要做的是从控制器内发送消息。

所以在我开箱即用的MVC互联网应用程序中,在HomeController中,关于操作,我添加了这个:

using ServerHub;

    public ActionResult About()
    {
        ViewBag.Message = "Your app description page.";

        var context = GlobalHost.ConnectionManager.GetHubContext<ChatterBox>();
        context.Clients.All.say("HELLO FROM ABOUT");

        return View();
    }

但上述似乎并没有起作用。没有错误消息或运行时错误。代码执行,只是我在其他浏览器上看不到该消息。

我哪里出错了?

1 个答案:

答案 0 :(得分:10)

您正在调用一个名为“say”的方法,并且您只在客户端上定义了一个名为“addMessage”的方法。

变化:

    context.Clients.All.say("HELLO FROM ABOUT");

要:

    context.Clients.All.addMessage("HELLO FROM ABOUT");