Signalr服务器

安装selfhost,vs2017管理nuget包里面没有,需要用命令行输入
Install-Package Microsoft.AspNet.SignalR.SelfHost
如果要设置跨域连接,需要安装cors包
PM>Install-Package Microsoft.Owin.Cors
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            // Branch the pipeline here for requests that start with "/signalr"
            app.Map("/signalr", map =>
            {
                // Setup the CORS middleware to run before SignalR.
                // By default this will allow all origins. You can 
                // configure the set of origins and/or http verbs by
                // providing a cors options with a different policy.
                map.UseCors(CorsOptions.AllowAll);
                var hubConfiguration = new HubConfiguration 
                {
                    // You can enable JSONP by uncommenting line below.
                    // JSONP requests are insecure but some older browsers (and some
                    // versions of IE) require JSONP to work cross domain
                    // EnableJSONP = true
                };
                // Run the SignalR pipeline. We're not using MapSignalR
                // since this branch already runs under the "/signalr"
                // path.
                map.RunSignalR(hubConfiguration);
            });
        }
    }

 

posted @ 2018-01-18 15:42  行走的影子  阅读(175)  评论(0编辑  收藏  举报