I made an application, and am trying to connect to the backend via SignalR.
The ASP.NET Core 3.1 backend is hosted in IIS for easy development.
Calling the StartAsync method on the client successfully negotiates, but then hangs forever on the GET:
GET http://localhost:81/signalr?id=W3F2TRVrx_lxZoinHzTzmA
The StartAsync() call can't return.
This only happens on IIS. When I start the app self-hosted, it works.
The rest of the WebAPI works on the IIS as well. Just SignalR won't connect.
Any idea why? I found quite a few questions and answers here, but none of them actually solve this precise problem.