Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blazor Server Kestrel keep-alive client-server communication after disconnect #39615

Closed
emetrix opened this issue Jan 18, 2022 · 1 comment
Closed
Labels
area-blazor Includes: Blazor, Razor Components feature-blazor-server ✔️ Resolution: Duplicate Resolved as a duplicate of another issue Status: Resolved

Comments

@emetrix
Copy link

emetrix commented Jan 18, 2022

I'm creating a .net 6 AspNet Core Blazor server application hosted by Kestrel within a docker container which uses a custom timeout handling on client side. Once the application is not used for e.g. 30 minutes a dialog is displayed and the page needs a reload for further usage.
For saving server and network resources after the client timeout occurs I'm trying to stop the application/connection by calling "Blazor.disconnect();" on the client side.

But I've noticed that after calling Blazor.disconnect() and displaying the information message the client the server the client and the server are still exchanging keep-alive data like this:

Sent a ping message to the client. [Microsoft.AspNetCore.SignalR.HubConnectionContext]
Sending payload: 3 bytes [Microsoft.AspNetCore.Http.Connections.Internal.Transports.WebSocketsTransport]
Message received. Type: Binary, size: 3, EndOfMessage: True [Microsoft.AspNetCore.Http.Connections.Internal.Transports.WebSocketsTransport]

Therefore I'm looking for a way to completely disconnect the client and free resouces of the connection on the server.

@javiercn
Copy link
Member

javiercn commented Jan 19, 2022

@emetrix thanks for contacting us.

Disconnect only releases resources from the Blazor session on the server, but it does not sever the underlying connection.

I'm marking this as a duplicate since we have another issue where we are tracking improvements in this area #30287

Please upvote that issue instead

@javiercn javiercn added ✔️ Resolution: Duplicate Resolved as a duplicate of another issue and removed area-runtime labels Jan 19, 2022
@ghost ghost added the Status: Resolved label Jan 19, 2022
@ghost ghost locked as resolved and limited conversation to collaborators Feb 18, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-blazor Includes: Blazor, Razor Components feature-blazor-server ✔️ Resolution: Duplicate Resolved as a duplicate of another issue Status: Resolved
Projects
None yet
Development

No branches or pull requests

3 participants