Iis – How to prevent IIS 8 from stopping idle ASP.NET applications

asp.netiis

I have an asp.net application running on Windows 2012 in IIS 8 that has a very time consuming application start process (essentially the code running in the Application_Start() event can take up to 2 minutes). Thus I'd like to minimize the number of times the application is started so that the user can avoid a long wait.

I've enabled Preload in the application settings, and I've set the Start Mode to AlwaysRunning in the application pool. Yet the application still ends after not being used for a while, resulting in a very long time for the first visit to the website after the application shuts down.

Does anyone have any ideas on how I can prevent this?

Thanks

Best Answer

In IIS 7, you had to set the idletimeout for the apppool to "0", I would guess it's something similar for IIS 8. Details here.