我的解决方案中有两个项目:
项目1:“SignalRChat”(MVC) - 工作正常 项目2: “DatabaseWatcherService”Windows服务 - 工作正常
我正在尝试从我的Windows服务调用SignalRChat Hub,但它似乎没有工作。
这是我通过Windows服务(https://github.com/SignalR/SignalR/wiki/Hubs#broadcasting-over-a-hub-from-outside-of-a-hub)呼叫我的集线器的地方:
void PerformTimerOperation(object sender, EventArgs e)
{
eventLog1.WriteEntry("Timer ticked...");
var message = "test";
var context = GlobalHost.ConnectionManager.GetHubContext<SignalRChat.ChatHub>();
context.Clients.All.addNewMessageToPage(message);
}
尝试连接时出现以下错误:
消息=远程服务器返回错误:(500)内部服务器错误。
我正在尝试通过var connection = new HubConnection("http://localhost:2129");
端口2129是我运行的MVC项目。
答案 0 :(得分:17)
只有当您从Web应用程序中调用集线器时,这才有效。
为了从Web应用程序外部与集线器进行交互,例如,从Windows服务,您需要查看SignalR Client Hubs documentation
将以下NuGet包添加到您的项目中:Microsoft.AspNet.SignalR.Client
将以下语句添加到页面顶部:using Microsoft.AspNet.SignalR.Client;
您需要创建与集线器的连接,然后开始连接。
var connection = new HubConnection("http://mysite/");
IHubProxy myHub = connection.CreateHubProxy("MyHub");
connection.Start().Wait(); // not sure if you need this if you are simply posting to the hub
myHub.Invoke("addNewMessageToPage", "Hello World");
在你的集线器中,你需要有AddNewMessageToPage
的方法,它接受hello world字符串,然后从这里调用Clients.All.addNewMessageTopage(message)