为什么我的网页失去了接收信号消息的能力

时间:2012-05-03 16:49:42

标签: signalr

基本上我有3个应用程序。我的集线器的Web应用程序,Nservicebus和信号器自托管服务器。我目前正在使用信号器版本.4。基本上,Web应用程序在页面加载时启动与自托管服务器的连接。用户执行一个向服务总线发送命令的操作。然后,服务总线连接到信号服务器以通知所有Web客户端。

我的网页:

<script src="http://localhost:8081/test/signalr/hubs" type="text/javascript"></script>
<script>
    jQuery.support.cors = true;
    var myHub;  

    $.connection.hub.url = 'http://localhost:8081/test/signalr/hubs';

    $(function () {
        myHub = $.connection.userAccountHub;

        myHub.ChangeNameUpdated = function (connId) {
            alert("recieved signalr message");          
        };

        $.connection.hub.start().done(function() {
            var myClientId = $.connection.hub.id;
            setCookie("srconnectionid", myClientId);
        });
    });

</script>

我的SignalR服务器:

      static void Main(string[] args)
    {
        Debug.Listeners.Add(new ConsoleTraceListener());
        Debug.AutoFlush = true;

        string url = "http://localhost:8081/test/";
        var server = new Server(url);


        server.EnableHubs();
        server.Start();


        Console.WriteLine("Server running on {0}", url);

        while (true)
        strong text{
            ConsoleKeyInfo ki = Console.ReadKey(true);
            if (ki.Key == ConsoleKey.X)
            {
                break;
            }
        }
    }

我的信号器服务器项目中的我的中心

 public class UserAccountHub : Hub
    {

        public void UsersNameChanged(string passedThroughConnectionId)
        {
            Clients.ChangeNameUpdated(passedThroughConnectionId);
        }
    }

来自我的nservicebus的电话

        //connect to signalRServer
        var connection = new HubConnection("http://localhost:8081/test/signalr/hubs");
        IHubProxy myHub = connection.CreateProxy("SignalRServer.Hubs.UserAccountHub");

        //Credentials are inherited from the application
        connection.Credentials = CredentialCache.DefaultNetworkCredentials;

        var test = message.GetHeader("signalrConnectionId");


        connection.Start().Wait();
        myHub.Invoke("UsersNameChanged", message.GetHeader("signalrConnectionId")).ContinueWith(task =>
        {
            //for debuging purposes
            if (task.IsFaulted)
            {
                Console.WriteLine(
                    "An error occurred during the method call {0}",
                    task.Exception.GetBaseException());
            }
            else
            {
                Console.WriteLine("Successfully called MethodOnServer");
            }
        });

我打开了2个浏览器。我在第二个浏览器上启动该过程,只有第一个接收通知。第二个浏览器没有。

当我运行fiddler时,我没有看到任何突出的问题。

这种实现有更好的方法,还是我错过了什么?

1 个答案:

答案 0 :(得分:2)

OK!大卫的评论让我朝着正确的方向前进。还注意到这是更新的,之前没有注意到这一点。 Scroll to the bottom for the cross domain support

1。)已更新至版本.5

2.。)在javascript中修改了我的连接信息

$.connection.hub.url = 'http://localhost:8081/test/signalr';

$.connection.hub.start({ transport: 'longPolling', xdomain: true }).done(function () {
    //alert("staring hub connection:  " + $.connection.hub.id);
    setCookie("srconnectionid", $.connection.hub.id);
});

3.)我不得不改变HubConnection

var connection = new HubConnection("http://localhost:8081/test/");

4.)我不得不改变IHubProxy

IHubProxy myHub = connection.CreateProxy("UserAccountHub");