gpt4 book ai didi

c# - 信号器/集线器上的 SignalR ERR_CONECTION_REFUSED

转载 作者:太空宇宙 更新时间:2023-11-03 15:37:39 25 4
gpt4 key购买 nike

已经更换了计算机来运行我的项目和网站,现在它根本无法运行。

当我转到 http://localhost:8080/signalr/hubs 时我收到“ERR_CONNECTION_REFUSED”

在我的自托管应用程序中:

string url = "http://*:8080";
using (WebApp.Start(url))
{
writeStatus("Server running on " + url);
}

在我的网站上:

<script src="http://localhost:8080/signalr/hubs"></script>

我错过了什么?

最佳答案

试试这个-->CorsOptions.AllowAll;

        app.UseCors(CorsOptions.AllowAll);
var hubConfiguration = new HubConfiguration() ;
hubConfiguration.EnableDetailedErrors = true;

app.MapSignalR(hubConfiguration);

关于c# - 信号器/集线器上的 SignalR ERR_CONECTION_REFUSED,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31305882/

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