vote up 0 vote down star

I’ve come across a rather strange bug (I assume it’s a bug) in the Enterprise Library 4.1 configuration editor. I decided to put the EntLib configuration in external files as we have multiple configurations and want to be able switch between them easily.

Web.config, snippet (irrelevant sections removed):

<configuration>
  <configSections>
    <section name="enterpriseLibrary.ConfigurationSource" type="[... type def ...]" />
    <section name="dataConfiguration" type="[... type def ...]" />
    ...
  </configSections>
  <enterpriseLibrary.ConfigurationSource selectedSource="Production Mode">
    <sources>
      <add name="Debug Mode" filePath="Entlib Configs\Debug Mode.config" type="[... type def ...]" />
      <add name="Production Mode" filePath="Entlib Configs\Production Mode.config" type="[... type def ...]" />
    </sources>
  </enterpriseLibrary.ConfigurationSource>
  ...
</configuration>

The external files are placed in a subfolder, and everything is working quite nicely.

However: If I now open the web.config in the EntLib configuration editor, the EntLib config settings from the current active external file (set in the selectedSource attribute) are visible – they appear to be set in the web.config, and I assume this is the intention. But if I actually save web.config from the EntLib editor, the settings are removed from the external config file and they not even stored in the web.config. They’re just gone!!!

I think the intention was that you could use the editor to manage multiple config files: Changes would be changed in the correct file (which actually has the settings), but this feature was apparently never fully implemented.

Question: Is there a way to avoid this issue? Is my configuration of the external files wrong (although it’s working fine)?

flag

78% accept rate
I tried to replicate your issue and I couldn't. The only strange behavior that I saw was that if I changed the selected source within the config tool it did not reload the config settings within the tool. Then if you saved, the currently selected config source would get overwritten with the settings from the previously selected config source. The workaround for that would be to change the selected source outside of the config tool before opening the app/web config with the tool. – Tuzo Oct 30 at 4:59

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.