iis - HTTP 403.9 - Access Forbidden: Too many users are connected -


I have created an application in VStudio. It was running well in debugging mode, but my computer was slow and slow because I used to work until it was freezed. After manually restarting it, the app was not running in any more debug and I got this app in the browser.

  1. Only I'm connected to the app now.
  2. I restarted the computer, so there is no instance associated with the client
  3. I removed and reset the IIS

What's wrong?

Is this happening on an XP Pro development machine? Occasionally, if you have many JavaScript / images / CSS files, as well as IFrames and many AJAX calls, one of your pages will exit the connection in a development environment. There are two ways to overcome this:

    Close the HTTP-Elevations. In the IIS Manager, go to the Web Site tab and under the connection, uncheck the HTTP Maintain-Elive enabled checkbox. Do not do it in a production environment because it will slow down your site too.

  1. Increase the number of concurrent connections You are limited by design for 10 concurrent connections by default, but it can be extended. First of all, make sure that your default window script is set to the host console (cscript.exe) at the command prompt:

    cscript // h: cscript

< P> Next, let's extend the limit of connections to 40.

  C: \ Inetpub \ AdminScripts \ adsutil set w3svc / MaxConnections 40  

You can make IIS connection timeout more aggressive so that connections do not last long .

Set the default script host back to the window:

  cscript // h: wscript  

Comments

Popular posts from this blog

c++ - Linux and clipboard -

What is expire header and how to achive them in ASP.NET and PHP? -

sql server - How can I determine which of my SQL 2005 statistics are unused? -