SignalR HubConnection 中的skipNegotiation 是什么意思?

问题描述 投票:0回答:1

有什么区别

this.hubConnection = new signalR.HubConnectionBuilder()
  .withUrl(environment.API_URL + "invoicinghub", {
    skipNegotiation: true,
    transport: signalR.HttpTransportType.WebSockets
  })
  .withAutomaticReconnect([0, 2000, 10000, 30000, null])
  .build();

this.hubConnection = new signalR.HubConnectionBuilder()
  .withUrl(environment.API_URL + "invoicinghub", {     
    transport: signalR.HttpTransportType.WebSockets
  })
  .withAutomaticReconnect([0, 2000, 10000, 30000, null])
  .build();

这skipNegotiation是什么意思:true。

谢谢!

azure asp.net-core websocket signalr
1个回答
11
投票

在 SignalR 中,客户端首先向服务器发送协商请求,服务器使用重定向 URL 和访问令牌(如果有)进行响应。

客户要求

{
  "connectionId":"807809a5-31bf-470d-9e23-afaee35d8a0d",
  "availableTransports":[
    {
      "transport": "WebSockets",
      "transferFormats": [ "Text", "Binary" ]
    },
    {
      "transport": "ServerSentEvents",
      "transferFormats": [ "Text" ]
    },
    {
      "transport": "LongPolling",
      "transferFormats": [ "Text", "Binary" ]
    }
  ]
}

服务器响应

{
    "url":"https://test.service.signalr.net/client/?hub=chat&...",
    "accessToken":"<a typical JWT token>"
}

客户端收到服务器的响应后才建立连接。

在 SignalR Core 中,但在 SignalR ASP 中,这需要粘性会话。为了避免使用粘性会话,客户端需要跳过协商,但仅限于仅使用

websockets
,而不使用 Azure。

来源:

© www.soinside.com 2019 - 2024. All rights reserved.