InterviewSolution
| 1. |
What Changes (if Any) To Application Host.config And Web.config Trigger A Restart Of All Application Pools? |
|
Answer» Any data in the application Pool section relevant to that app-pool (so either in applicationPoolDefaults or specific to that app-pool) will cause WAS to recycle the app-pool. WORKER process can ask WAS to recycle app-pools BASED on certain config changes, currently the only one we do it for is GLOBAL Modules, but this is not a CLOSED list (as modules can ask for recycle based on config change). Any data in the application Pool section relevant to that app-pool (so either in applicationPoolDefaults or specific to that app-pool) will cause WAS to recycle the app-pool. Worker process can ask WAS to recycle app-pools based on certain config changes, currently the only one we do it for is global Modules, but this is not a closed list (as modules can ask for recycle based on config change). |
|