Unable to connect to SignalR (Not Azure SignalR) after deployment to Azure App Service
We are trying out SignalR in one of our .net 7 web API deployed in Azure. The issue is it won't allow connecting to the signalR after deployment, It was first CORS error (Even tho, CORS has been enabled in the backend) , when changed to SSE, now I am getting a 404 NOT FOUND (
{ "statusCode": 404, "message": "Resource not found" }
) on negotiate
This is how I am connecting
The above code will respond with
If I tried with
This is what I get
If I don't skipNegotiation
-> Then its a CORS error
I have tried almost everything that I am aware of.... I have also enabled WebSockets in the App Services Configuration0 Replies