SignalR Self Host+MVC等多端消息推送服务(一)(2)

using Microsoft.Owin.Cors; using Owin; namespace Server { public class Startup { public void Configuration(IAppBuilder app) { //允许CORS跨域 app.UseCors(CorsOptions.AllowAll); app.MapSignalR(); } } }

SignalR Self Host+MVC等多端消息推送服务(一)

8、修改Server控制台中添加Program类,代码如下

using Microsoft.Owin.Hosting; using System; namespace Server { class Program { static void Main(string[] args) { string url = "http://localhost:10086";//设定 SignalR Hub Server 对外的接口 using (WebApp.Start(url))//启动 SignalR Hub Server { Console.WriteLine("Server running on {0}", url); Console.ReadLine(); } } } }

SignalR Self Host+MVC等多端消息推送服务(一)

9、F5运行起来

然后浏览器中访问:10086/signalr/hubs

结果如下:

SignalR Self Host+MVC等多端消息推送服务(一)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdpdzf.html