Reputation: 2382
I am using signalR for a 1-1 chat application. In other words, only one user can chat at a time.
signalR is starting up correctly, but later it is timing out.
Is there a relation between this behavior and the fact that the Firewall on my public server? Is there a possibility Firewall is thinking a service is flooding it with requests?
Thanks
Upvotes: 0
Views: 241
Reputation: 1922
I'm not sure about the firewall to be honest, but have you tried setting keepalive on the configuration in the application_start method in the global.asax file, for example
GlobalHost.Configuration.KeepAlive = TimeSpan.FromSeconds(60);
Upvotes: 1