3

基本上我有3个应用程序。用于我的集线器的 Web 应用程序、Nservicebus 和信号器自托管服务器。我目前正在使用信号器版本 0.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;
            }
        }
    }

我的 Signalr 服务器项目中的集线器

 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 时,我也没有看到任何突出的问题。

有没有更好的方法来实现这个,或者我错过了什么?

4

1 回答 1

2

好的!大卫的评论让我朝着正确的方向前进。还注意到这是更新的,以前没有注意到这一点。 滚动到底部以获得跨域支持

1.) 更新至 0.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");
于 2012-05-21T18:59:46.000 回答