I've got a WCF component that I wrote in VS 2008 (using .NET framework 3.5) installed on a Windows 2003 Server. I've been having some problems using one of the methods, and in an effort to try and debug the problem I've been advised to add some diagnostics to the Web.Config file. Now, this WCF server doesn't get used much at all at this point, so can I just make the edits in the Web.Confilg file, and then run a test with my new client app? Or do I have to stop and restart IIS on the Windows 2003 Server?
2 Answers
Changes to the web.config will trigger the app to be reloaded by IIS as soon as there are 0 connections left to the app. You can also stop and restart the app pool that the app is assigned to in order to make this happen. You do not need to stop and restart IIS itself.
- 7It doesn't wait until there are zero connections.TristanK– TristanK2011-09-08 02:37:40 +00:00Commented Sep 8, 2011 at 2:37
- 2Will restarting an app pool on a live system cause user interruption?spuder– spuder2015-06-04 23:53:21 +00:00Commented Jun 4, 2015 at 23:53
- 2@spuder yes, it can. While the app pool is down there is no worker process to execute your app so users will get a 503 Service Unavailable until the app pool has started back up.squillman– squillman2015-06-05 12:53:38 +00:00Commented Jun 5, 2015 at 12:53
It depends if your application reads the configuration file every time it needs the setting, or monitors the file for changes (like log4net does). If not, you need to restart the application.
Note that by default, any changes to any file in an IIS managed folder, will usually result in a restart of the application domain.
- 1Application domain, not application pool.TristanK– TristanK2011-09-07 21:38:31 +00:00Commented Sep 7, 2011 at 21:38