Ryan Brooks
Ryan Brooks

Reputation: 31

IIS 6 App Pools not responding to multiple requests / not running multi-threaded

I have a classic ASP application that has been stable for years and now we're having all kinds of problems with it. After moving the app between machines and wiping the original so we could have a fresh install of windows, we've come to the following "symptom". The app pools do not appear to allow for multiple simultaneous requests. Here's what we are seeing:

I'm pretty much at a loss now... does anyone have any experience with similar issues? If so, how were they fixed?

Upvotes: 3

Views: 3794

Answers (3)

Upgrade your server to Windows Pro; don't leave it on the Home version.

Upvotes: 0

AnthonyWJones
AnthonyWJones

Reputation: 189439

Check that you don't have ASP debugging enabled on the server. This will force the ASP script engine to run on a single thread.

Upvotes: 3

Gabriele Petrioli
Gabriele Petrioli

Reputation: 195952

Sounds like an limit on the number of concurrent incoming requests to the IIS or the Windows Server..

Check out http://blogs.msdn.com/b/david.wang/archive/2006/04/12/howto-maximize-the-number-of-concurrent-connections-to-iis6.aspx and http://forums.iis.net/p/1152112/1880908.aspx#1880908 on how to tweak the settings.

Upvotes: 0

Related Questions