Blazor app is not working with Front door

YachamaneniSreelekha-1920 1 Reputation point
2024-07-11T17:59:55.3433333+00:00

Hi,

My blazor app works fine in local. And I had deployed to App service in azure and did front door configuration for lower environments, then it shows warning message like below and all actions (Add/delete) works fine as expected.

User's image

But when i deployed the code to production app service it is throwing an error and ADD/update/delete actions are not working.

User's image

Can you please help me out? Thank you!

Azure Front Door
Azure Front Door
An Azure service that provides a cloud content delivery network with threat protection.
624 questions
Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,491 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Bruce (SqlWork.com) 60,866 Reputation points
    2024-07-11T22:41:22.7266667+00:00

    azure front door does not support web sockets and signal/r falling back to long polling. for long polling to work, your host needs to support server affinity (session affinity in front door).

    long pulling is a repeated series of ajax request from the client, and must go to the same server if signal/r is hosted in a farm. this is not as performant as websockets.

    note: you should use azure signal/r to get around the front door websocket limitations.

    0 comments No comments