这是我的SignalR控制台应用程序,工作正常。它能够从Hub接收消息并将其打印到控制台上。
static void Main(string[] args)
{
MainAsync().Wait();
Console.ReadLine();
}
static async Task MainAsync()
{
try
{
var hubConnection = new HubConnection("http://localhost:8080/");
IHubProxy hubProxy = hubConnection.CreateHubProxy("MyHub");
hubProxy.On<string, string>("addMessage", (name, message) =>
{
Console.WriteLine("Incoming data: {0} {1}", name, message);
});
ServicePointManager.DefaultConnectionLimit = 10;
await hubConnection.Start();
}
catch (Exception ex)
{
}
}
我创建了一个Windows服务,并且几乎为字符复制了字符,除了它打印到控制台的部分,我将它打印到日志文件
protected override void OnStart(string[] args)
{
Log.Info("Starting...");
StartListening().Wait();
}
private static async Task StartListening()
{
try
{
var hubConnection = new HubConnection("http://localhost:8080/");
IHubProxy hubProxy = hubConnection.CreateHubProxy("MyHub");
hubProxy.On<string, string>("addMessage", (name, message) =>
{
Log.Info(string.Format("Incoming data: {0} {1}", name, message));
});
ServicePointManager.DefaultConnectionLimit = 10;
await hubConnection.Start();
Log.Info("Connected");
}
catch (Exception ex)
{
Log.Error(ex);
}
}
这是我的服务器代码:
static void Main(string[] args)
{
//string url = "http://localhost:8080";
string url = "http://*:8080";
using (WebApp.Start(url))
{
MyHub hub = new MyHub();
Console.WriteLine("Server running on {0}", url);
var key = Console.ReadLine();
while (key != "quit")
{
hub.Send("Server", key);
}
}
}
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.UseCors(CorsOptions.AllowAll);
app.MapSignalR();
}
}
public class MyHub : Hub
{
public void Send(string name, string message)
{
//Clients.All.addMessage(name, message);
var context = GlobalHost.ConnectionManager.GetHubContext<MyHub>();
context.Clients.All.addMessage(name, message);
}
}
但是,除了“Starting ...”和“Connected”
之外,没有任何内容写入日志文件也没有抛出异常。
我是否需要包含其他内容或修改SignalR的代码才能在Windows服务上运行?
更新
显然,似乎改变了这一行
string url = "http://localhost:8080";
到这个
string url = "http://*:8080";
我的服务器代码中的解决了我的问题。但我不知道为什么。
答案 0 :(得分:3)
我有类似的问题。问题是在URL中使用localhost
。将localhost
替换为实际的服务器名称。
问题解释为here。
该URL用于打开HttpListener。使用上面的URL( localhost一个)这个HttpListener将接受来自的请求 仅
http://localhost
。其他等效的URL不起作用:
http://127.0.0.1
http://110.120.130.140
http://myserver