We have a web application set to run in a webgarden enviornment, with two
worker process. Session State is set to state server. The default pool
properties have the setting "shutdown if work process idle" set to 5 minutes
- meaning if any of the worker process is inactive for more than 5 minutes,
it will be released by IIS. The question here is, when the worker process is
reactiviated by IIS, does the Applcation_OnStart() method defined in
Global.asax.cs get executed. Assume that of the two worker processes, one of
the process restarts after sometime.

Thanks in advance