17

请注意,我在这里明确引用了 SignalR 2.0 ......我已经看到了 SignalR 1.1/1.2 的一些(讨厌的)方法......但 2.0 还没有。

有没有人成功更改 SignalR 2.0 默认 json 序列化程序以启用派生类型的发送?根据我对 SignalR 2.0 的了解,这应该是可能的,但是,我没有任何运气,也没有在任何地方找到完整的示例。

这是我开始的方式……任何帮助将不胜感激。

我的启动.cs

    [assembly: OwinStartup(typeof(SignalRChat.Startup))]
    namespace SignalRChat
    {

        public class Startup
        {
            public void Configuration(IAppBuilder app)
            {
                // this should allow the json serializer to maintain the object structures
                var serializer = new JsonSerializer()
                {
                    PreserveReferencesHandling = PreserveReferencesHandling.Objects,
                    TypeNameHandling = TypeNameHandling.Objects,
                    TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple
                };

                // register it so that signalr can pick it up
                GlobalHost.DependencyResolver.Register(typeof(JsonSerializer), () => serializer);

                app.MapSignalR();
            }
        }
    }

集线器上的方法

    public void AddStock(Stock stock)
    {
        string stockType = stock.GetType().ToString();
        Console.WriteLine("The type of stock we got was: " + stockType);
    }

我的控制台测试应用程序(这发布到集线器)

    myDataHub.Invoke("AddStock", new NyseStock()
    {
        Company = "Microsoft",
        NyseSymbol = "MSFT"
    });

    myDataHub.Invoke("AddStock", new DaxStock()
    {
        Company = "Microsoft",
        DaxSymbol = "DMSFT"
    });

只是为了衡量 Stock.cs

    namespace Messages
    {
        public class Stock
        {
            public string Company
            {
                get;
                set;
            }
            public decimal Price
            {
                get;
                set;
            }
        }

        public class NyseStock : Stock
        {
            public string NyseSymbol
            {
                get;
                set;
            }
        }

        public class DaxStock : Stock
        {
            public string DaxSymbol
            {
                get;
                set;
            }
        }
    }

我的第一个倾向是我忽略了在客户端设置序列化程序。所以我在创建连接之后但在创建集线器代理之前添加了以下内容:

    myConnection = new HubConnection("http://localhost:64041/");
    // Update the serializer to use our custom one
    myConnection.JsonSerializer = new JsonSerializer()
    {
         PreserveReferencesHandling = PreserveReferencesHandling.Objects,
         TypeNameHandling = TypeNameHandling.Objects,
         TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple
    };

    //Make proxy to hub based on hub name on server
    myDataHub = myConnection.CreateHubProxy("DataHub");

然而,这只是在 myDataHub.Invoke(..) 调用期间导致了 InvalidOperationException(无法发送数据,因为连接处于断开状态。在发送任何数据之前调用 start。)。

4

1 回答 1

5

自从问这个问题以来已经有一段时间了。为了将来参考,myConnection.Start()方法需要在创建代理后调用,像这样

myConnection = new HubConnection(endpoint);

proxy = _conn.CreateHubProxy("DataHub");
proxy.On<string>("ServerEvent", ClientHandler);

myConnection.Start();

proxy.Invoke("hubMethod", ...);
于 2014-02-19T23:16:27.133 回答