Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
i have developped a small mvc5 application and i have deployed it on Windows 7 where is installed iis7.
when users (5 computers) are connected on the application in intranet it is very slow. but after reboot computer and one user work no problem but when 1 ,2 ,3 join there is a very big problem of performance.

is mvc5 + signal R application compatible ? with iis 7
Posted

1 solution

The version of IIS which comes with a client OS like Windows 7 has significant restrictions on what it can do, to prevent you from using the cheaper OS as a server.


Starting with IIS 7 (Windows Vista), the behavior changed from previous versions. In previous client versions of IIS, excess requests would throw a 403.9 error message (Access Forbidden: Too many users are connected.). Instead, Windows Vista, 7 and 8 queue excessive requests so that they will be handled gracefully, although there is a maximum number of requests that will be processed simultaneously.
...
Windows 7 – IIS 7.5 Concurrent Requests Limit
  • Windows 7 Home Starter: 1
  • Windows 7 Basic: 1
  • Windows 7 Premium: 3
  • Windows 7 Ultimate, Professional, Enterprise: 10



To get reasonable performance, you need to use a proper server OS.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900