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?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

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.

link|improve this answer
It doesn't wait until there are zero connections. – TristanK Sep 8 '11 at 2:37
feedback

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.

link|improve this answer
Application domain, not application pool. – TristanK Sep 7 '11 at 21:38
Thank you, I have corrected the offending statements. – Greg Askew Sep 8 '11 at 2:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.