When compiling a project with SignalR, I have to execute iisreset

I have an n-tier application to which I have added SignalR functionality. When I compile my business layer now, I have to do iisreset before the website can load again. It just loads, and it’s not going anywhere. Even killing in the w3wp process does not help.

I tried and removed SignalR, and then it works fine when compiling the backend. I assume that the connection is made from SignalR to the server, and it breaks when the backend is compiled, which forces the site to perform a full load.

What could I do with this?

+6
source share
1 answer

Do you work on Windows 7? If you do not then do this, it only allows 10 concurrent connections. Use IIS instead.

+8
source

Source: https://habr.com/ru/post/910674/


All Articles