我试图建立一个SignalR集线器,以便能够通过网络向一堆WPF客户端推送通知。我已经尝试遵循基本指南和教程,并创建了一个WPF SignalR服务器(仅用于测试目的)。这已放在我的局域网中的服务器上,它的外观如下:
Startup.cs
class Startup
{
public void Configuration(IAppBuilder app)
{
HubConfiguration hc = new HubConfiguration();
hc.EnableDetailedErrors = true;
app.UseCors(CorsOptions.AllowAll);
app.MapSignalR(hc);
}
}
MainWindow.xaml.cs
public IDisposable SignalR { get; set; }
const string ServerURI = "http://localhost:8554";
private void StartServer()
{
try
{
SignalR = WebApp.Start(ServerURI);
}
catch (TargetInvocationException)
{
WriteToConsole("A server is already running at " + ServerURI);
return;
}
this.Dispatcher.Invoke(() => btnStopHub.IsEnabled = true);
}
AdHocHub.cs
public class AdHocHub : Hub
{
public void Send(string data)
{
Clients.All.notifyData(data);
}
public override Task OnConnected()
{
Application.Current.Dispatcher.Invoke(() =>
((MainWindow)Application.Current.MainWindow).WriteToConsole("Client connected: " + Context.ConnectionId));
return base.OnConnected();
}
public Task OnDisconnected()
{
Application.Current.Dispatcher.Invoke(() =>
((MainWindow)Application.Current.MainWindow).WriteToConsole("Client disconnected: " + Context.ConnectionId));
return base.OnDisconnected(true);
}
}
服务器启动就好了。但是,当我尝试将客户端连接到它时,它拒绝向我提供 400 - 错误请求。如果我尝试导航到http://192.nnn.nnn.nnn/signalr
我得到的是错误请求 - 无效主机名。如果我在同一台机器上运行服务器和客户端,一切正常。我在这里做错了什么?
客户端调用设置如下:
private async void ConnectAsync()
{
Connection = new HubConnection(ServerURI);
HubProxy = Connection.CreateHubProxy("AdHocHub");
HubProxy.On<string>("notifyData", (notifyData) => this.Dispatcher.Invoke(() => txtEvents.AppendText(notifyData.ToString())));
try
{
await Connection.Start();
}
catch (HttpRequestException ex)
{
MessageBox.Show(ex.ToString());
lblStatus.Content = "Unable to connect to server: Start server before connecting clients.";
return;
}
txtEvents.AppendText("Connected to server and listening...");
}
我已尝试将服务器中的URI从主机名更改为其IP,但之后我只获得了TargetInvocationException
,因此无法提供帮助。
如前所述,只要客户端和服务器在同一台机器上运行,整个设置似乎都能正常运行,但即使我将CorsOptions
设置为{{{} 1}}。
答案 0 :(得分:1)
(将我自己的评论转换为答案,因为在大多数情况下,这似乎是答案)
将服务器中的ServerURI
从localhost
更改为http://+:8554
,否则它将仅侦听localhost。它可以在同一台机器上工作,因为其本地主机。
但是,一旦将其更改为该新方案,则在调试时,您将需要在管理模式下运行Visual Studio,否则,如果打开UAC,则会抛出TargetInvocationException
。