You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using GraphQL.Client for .NET Standard to connect aws AppSync, but the connection is occasionally disconnected.
I have following code to check connection status
_graphQlClient.WebsocketConnectionState.Subscribe(state => { _isWebSocketConnected = state == GraphQL.Client.Abstractions.Websocket.GraphQLWebsocketConnectionState.Connected; });
The above code cannot find the status change until I do something on aws AppSync api.
In this case, we have to reset aws ApSync api by changing the settings or changing the script. My code will detect a connection change, and will reconnect to the web socket.
So I decided to upgrade from current verkion 4.0.2 to 6.01.
After it is upgraded, I have an error on
_graphQlClient.InitializeWebsocketConnection();
The error msg is
"The remote party closed the WebSocket connection without completing the close handshake. "
Anyone see this error.
The text was updated successfully, but these errors were encountered:
I am using GraphQL.Client for .NET Standard to connect aws AppSync, but the connection is occasionally disconnected.
I have following code to check connection status
_graphQlClient.WebsocketConnectionState.Subscribe(state => { _isWebSocketConnected = state == GraphQL.Client.Abstractions.Websocket.GraphQLWebsocketConnectionState.Connected; });
The above code cannot find the status change until I do something on aws AppSync api.
In this case, we have to reset aws ApSync api by changing the settings or changing the script. My code will detect a connection change, and will reconnect to the web socket.
So I decided to upgrade from current verkion 4.0.2 to 6.01.
After it is upgraded, I have an error on
_graphQlClient.InitializeWebsocketConnection();
The error msg is
"The remote party closed the WebSocket connection without completing the close handshake. "
Anyone see this error.
The text was updated successfully, but these errors were encountered: