vote up 1 vote down star

I have implemented a custom section in my app.config file and am accessing it using ConfigurationSection and ConfigurationElement. When the application starts all data is retrieved correctly. If I manually change the values in the app.config file then my application later calls ConfigurationManager.RefreshSection I still receive the original values not the updated ones.

Am I misunderstanding how RefreshSection functions?

<configSections>
    <section name="OrderProcessorSettings" type="OrderProcessor.Configuration.OrderProcessor.OrderProcessorConfigHandler, RDC.BL.OrderProcessor" />
</configSections>

<OrderProcessorSettings>
    <OrderBlock OrderCheckInterval = "1000" />
</OrderProcessorSettings>



System.Configuration.ConfigurationManager.RefreshSection("OrderProcessorSettings");
            OrderProcessorConfigHandler config = (OrderProcessorConfigHandler)System.Configuration.ConfigurationManager.GetSection("OrderProcessorSettings");

this.OrderCheckInterval = config.OrderBlock.OrderCheckInterval;
flag

50% accept rate
Just as a double-check, are you changing the version of the config file in your bin or deployment folder? Just changing app.config in your solution won't work until you rebuild and it's recopied to your bin folder. – Adrian Anttila Jun 15 at 4:57

1 Answer

vote up 0 vote down

Having the same problem. However, after some testing, I've noticed that during that Request's lifecycle, the config isn't re-read, but on the next request, the config is re-read and I get the updated values.

Anyone have ANY idea on how to get the config to be re-read during the same request lifecycle?

By the way, I'm using this for a web application, but the principal is the same.

link|flag
If you have a follow up question and can provide some more information about the problem you should post it as a new question, not as an answer to this old question. More people will read it since old questions are not frequented very much. In the top right is an "Ask Question" button to do so. – sth Aug 28 at 4:38
Apologies, will do. – Mike Nicol Aug 28 at 9:25

Your Answer

Get an OpenID
or

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