gpt4 book ai didi

c# - 检测到与 ASP.NET SignalR 服务器的连接尝试。此客户端仅支持连接到 ASP.NET Core SignalR 服务器

转载 作者:太空狗 更新时间:2023-10-29 17:33:21 25 4
gpt4 key购买 nike

我正在为服务器使用控制台应用程序,我的客户端是一个 Angular 2 应用程序。我得到一个错误

Error: Failed to start the connection: Error: Detected a connection attempt to an ASP.NET SignalR Server. This client only supports connecting to an ASP.NET Core SignalR Server.

我设置了集线器,我的 Startup.cs 如下所示:

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.

hubConfiguration.EnableDetailedErrors = true;
map.RunSignalR(hubConfiguration);
});
}
}

在我的 Angular 应用程序中,这就是我在 app.component.ts 中的内容

ngOnInit(): void {
this.nick = window.prompt('Your name:', 'John');

this.hubConnection = new HubConnectionBuilder().withUrl("http://localhost:8089/signalr").build();

this.hubConnection
.start()
.then(() => console.log('Connection started!'))
.catch(err => console.log('Error while establishing connection :('));

this.hubConnection.on('addMessage', (nick: string, receivedMessage: string) => {
const text = `${nick}: ${receivedMessage}`;
this.messages.push(text);
});
}

public sendMessage(): void {
this.hubConnection
.invoke('sendToAll', this.nick, this.message)
.catch(err => console.error(err));
}

我知道我的错误是连接到 asp.net 核心信号服务器,但我该怎么做?

最佳答案

正如 Stefano 和 Ibanez 评论的那样,“版本”存在问题。

您正在使用的 SignalR 客户端能够连接到 ASPNET Core,但无法连接到 ASPNET 服务器,如所提到的错误。

如果您知道 ASPNET Core 是从基于多平台的 .Net Framework (CLR) 中分离出来的。

那么在这种情况下您有两种选择。

如果您希望继续使用 ASPNET 服务器端,首先您可以更改您的客户端。然后将您使用的库更改为支持 ASPNET 的库。给看看:SIGNALR - ASPNET vs ASPNET Core

其次,您可以更改服务器端并将 ASPNET Core 用于 SignalR,例如作为微服务。然后继续使用 ASPNET Core SignalR 库实现您的客户端。

关于c# - 检测到与 ASP.NET SignalR 服务器的连接尝试。此客户端仅支持连接到 ASP.NET Core SignalR 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53861944/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com