ASP.NET CORE 2.1调试时服务器超时

时间:2018-04-13 11:45:54

标签: asp.net-core asp.net-core-signalr

  

'错误:服务器超时已过,但没有收到来自的消息   服务器'

我试图调试一些服务器端代码,而我这样做会导致客户端在不到一分钟的时间内断开连接。

我只使用SignalR与客户端通信,而没有控制器。

是否有任何设置可以禁用超时或至少使其比现在更长?

我的launchSettings.json:

{
  "iisSettings": {
    "windowsAuthentication": false,
    "anonymousAuthentication": true,
    "iisExpress": {
      "applicationUrl": "http://localhost:26793",
      "sslPort": 44386
    }
  },
  "profiles": {
    "IIS Express": {
      "commandName": "IISExpress",
      "launchBrowser": true,
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development",
        "ASPNETCORE_HTTPS_PORT": "44386"
      }
    },
    "Api": {
      "commandName": "Project",
      "launchBrowser": true,
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development",
        "ASPNETCORE_URLS": "https://localhost:5001;http://localhost:5000"
      }
    }
  }
}

2 个答案:

答案 0 :(得分:6)

感谢@Arhire Ionut

以下是如何增加Javascript客户端超时

hubConnection.serverTimeoutInMilliseconds = 100000; // 100 second

此处有更多详情=> https://github.com/aspnet/Docs/issues/6885

答案 1 :(得分:5)

在另一个答案中提到的@MahmoudFarhat是正确的。 But also take a look at this link,然后在下面阅读我的评论。

如果signalR断开连接,则应尝试重新建立连接。连接可能由于其他一些原因而断开,包括用户交换网络。例如,如果用户正在使用手机并连接到家庭/办公室Wifi,但先退出,然后再连接到蜂窝数据连接。

要重新连接,您可以使用以下命令(对我来说就像是护身符):

// re-establish the connection if connection dropped
connection.onclose(() => setTimeout(startSignalRConnection(connection), 5000));

其中startSignalRConnection是:

const startSignalRConnection = connection => connection.start()
  .then(() => console.info('Websocket Connection Established'))
  .catch(err => console.error('SignalR Connection Error: ', err));

连接是

const connection = new HubConnectionBuilder()
  .withUrl(connectionHub, options)
  .withHubProtocol(protocol)
  .build();