Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 signalR 用于 1-1 聊天应用程序。换句话说,一次只有一个用户可以聊天。
signalR 正确启动,但后来超时。
此行为与我的公共服务器上的防火墙这一事实之间是否存在关系?防火墙是否有可能认为服务正在向它发出请求?
谢谢
老实说,我不确定防火墙,但是您是否尝试过在 global.asax 文件的 application_start 方法中的配置上设置 keepalive,例如
GlobalHost.Configuration.KeepAlive = TimeSpan.FromSeconds(60);