Which configuration method do you prefer in .net? Why? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:22:13Z http://stackoverflow.com/feeds/question/117407 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why 14 Which configuration method do you prefer in .net? Why? spinodal 2008-09-22T20:27:48Z 2008-12-02T23:51:08Z <ul> <li>You can use App.config; but it only supports key/value pairs.</li> <li>You can use .Net configuration, configuration sections; but it can be really complex.</li> <li>You can use Xml Serialization/Deserialization by yourself; your classes-your way.</li> <li>You can use some other method; what can they be? ...</li> </ul> <p>Which of these or other methods (if there are) do you prefer? Why?</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117417#117417 12 Answer by Mitchel Sellers for Which configuration method do you prefer in .net? Why? Mitchel Sellers 2008-09-22T20:29:22Z 2008-09-22T20:29:22Z <p>If I can get away with it I will just use the App.Config, however, if I need something more complex I will use custom configuration sections. Yes it is a pain to get an understanding of in the beginning, but a unified configuration source, and familiar configuration for all settings is worth the time investment in my opinion.</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117421#117421 0 Answer by Matt Howells for Which configuration method do you prefer in .net? Why? Matt Howells 2008-09-22T20:30:16Z 2008-09-22T20:30:16Z <p>I keep most of my config in IoC container, e.g. Spring.Net.</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117440#117440 1 Answer by Chris for Which configuration method do you prefer in .net? Why? Chris 2008-09-22T20:33:19Z 2008-09-22T20:41:03Z <p>I use a custom xml configuration file, where a different config file is used for each environment (dev/qa/prod). The config files are templates that are dynamically instantiated with things like host/port configurations for services - this makes multi environments and failover very easy as it can be handled by the template instantiation code.</p> <p>Of course if you have very little config and are not concerned with multiple environments then app.config is more standard and is probably the best way to go.</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117444#117444 0 Answer by Xian for Which configuration method do you prefer in .net? Why? Xian 2008-09-22T20:34:54Z 2008-09-22T20:34:54Z <p>I find <a href="http://msdn.microsoft.com/en-us/library/aa903356(VS.71).aspx" rel="nofollow">NameValueCollectionHandler</a> the easiest and best, and I generally would link off to an external config file via the configSource attribute.</p> <p>I try to put the ABSOLUTE MINIMUM configuration in config files, with most of it being configured in code with an Application that is self-aware of its deployment environment (such as by machine name or IP Address if known). Of course this required much more pre-planning and knowledge of your environments, but much less headache when deploying.</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117470#117470 2 Answer by hectorsosajr for Which configuration method do you prefer in .net? Why? hectorsosajr 2008-09-22T20:38:30Z 2008-09-22T20:38:30Z <p>I was a network/system admin in the past, and now I develop internal utilities for database applications. What I've found is this:</p> <p>Simple Non-Nested configuration files are the best for applications that won't be changing where they access their resources very much.</p> <p>Anything more complex needs to go into a database with an administration UI. This only applies to regular business users. If you are worried about the database getting corrupted, then use the complex configuration file approach. Files tend to corrupt less than databases.</p> <p>Now, if your users are other developers, then you will have a lot more flexibility on what to use to store your configurations.</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117475#117475 0 Answer by Abe Heidebrecht for Which configuration method do you prefer in .net? Why? Abe Heidebrecht 2008-09-22T20:39:05Z 2008-09-22T20:39:05Z <p>If you have .NET 3.0 available, I find the XamlReader/XamlWriter very handy for storing settings. They can write/read any .NET object to XAML if:</p> <ul> <li>The object has a parameterless constructor</li> <li>The properties to read/write have public getters and setters</li> </ul> <p>It is especially nice that you don't have to decorate your settings objects with any attributes. </p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117597#117597 16 Answer by JohnIdol for Which configuration method do you prefer in .net? Why? JohnIdol 2008-09-22T20:56:53Z 2008-09-22T20:56:53Z <p>When key value pairs are not enough I use Configuration Sections as they are not complex to use (unless you need a complex section):</p> <p>Define your custom section:</p> <pre><code> public class CustomSection : ConfigurationSection { [ConfigurationProperty("LastName", IsRequired = true, DefaultValue = "TEST")] public String LastName { get { return (String)base["LastName"]; } set { base["LastName"] = value; } } [ConfigurationProperty("FirstName", IsRequired = true, DefaultValue = "TEST")] public String FirstName { get { return (String)base["FirstName"]; } set { base["FirstName"] = value; } } public CustomSection() { } } </code></pre> <p>Programmatically create your section (if it doesn't already exist):</p> <pre><code> // Create a custom section. static void CreateSection() { try { CustomSection customSection; // Get the current configuration file. System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(@"ConfigurationTest.exe"); // Create the section entry // in the &lt;configSections&gt; and the // related target section in &lt;configuration&gt;. if (config.Sections["CustomSection"] == null) { customSection = new CustomSection(); config.Sections.Add("CustomSection", customSection); customSection.SectionInformation.ForceSave = true; config.Save(ConfigurationSaveMode.Full); } } catch (ConfigurationErrorsException err) { //manage exception - give feedback or whatever } } </code></pre> <p>Following CustomSection definition and actual CustomSection will be created for you:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;section name="CustomSection" type="ConfigurationTest.CustomSection, ConfigurationTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" allowLocation="true" allowDefinition="Everywhere" allowExeDefinition="MachineToApplication" overrideModeDefault="Allow" restartOnExternalChanges="true" requirePermission="true" /&gt; &lt;/configSections&gt; &lt;CustomSection LastName="TEST" FirstName="TEST" /&gt; &lt;/configuration&gt; </code></pre> <p>Now Retrieve your section properties:</p> <pre><code> CustomSection section = (CustomSection)ConfigurationManager.GetSection("CustomSection"); string lastName = section.LastName; string firstName = section.FirstName; </code></pre> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117627#117627 0 Answer by Joel Coehoorn for Which configuration method do you prefer in .net? Why? Joel Coehoorn 2008-09-22T21:02:34Z 2008-09-22T21:02:34Z <p>dataset.WriteXML()/dataset.ReadXML() work pretty well for me when the app.config doesn't cut it anymore.</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/117655#117655 2 Answer by gbjbaanb for Which configuration method do you prefer in .net? Why? gbjbaanb 2008-09-22T21:06:37Z 2008-09-22T21:06:37Z <p>Put your configuration into a database. If you run your app on more than 1 machine (eg a client-server app) then all the per-machine config systems are a PITA. A single config area is the best way to place your configuration. Write a gui to manage it and you'll be very happy.</p> <p>Rolling out app.config files to 200 client boxes.. its not fun, especially when one gets missed (and they do, believe me).</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/119866#119866 0 Answer by spinodal for Which configuration method do you prefer in .net? Why? spinodal 2008-09-23T08:36:18Z 2008-09-23T08:36:18Z <p>Mostly I prefer using custom xml file and Xml Serialization method to read and write this config files... Not restricted to key/value pairs and not complex to implement... </p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/120269#120269 0 Answer by Chris for Which configuration method do you prefer in .net? Why? Chris 2008-09-23T10:41:36Z 2008-09-23T10:41:36Z <p>I've had good luck rolling my own special class that returns config data from a ".settings" file associated with the calling assembly. The file is XML, and the settings class exposes it publicly as an XDocument. Additionally, the indexer for this settings class returns element values from /settings/setting nodes.</p> <p>Works great for simple applications where you just need a key/value pair access to settings, and works great for complicated settings where you need to define your own structure and use System.Xml.Linq to query the XML document.</p> <p>Another benefit of rolling your own is that you can use FileSystemWatcher and callback Action type to automatically fire a method when the file changes at runtime.</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/120310#120310 1 Answer by Valery for Which configuration method do you prefer in .net? Why? Valery 2008-09-23T10:53:36Z 2008-09-23T10:53:36Z <p>I thing key/value configurations work pretty well for simple configurations files. It becomes a problem when the file starts to grow and difficult to maintain. We started to split configuration file to "common" and "specific" applications configurations. The file access is transparent to app, "common" values are the same in most cases, but "specific" differ for every deployed application.</p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/335851#335851 0 Answer by marto for Which configuration method do you prefer in .net? Why? marto 2008-12-02T23:51:08Z 2008-12-02T23:51:08Z <p>I use a custom xml config file. Each setting has a key, value and type. </p> <p>It has one main section that contains all settings and additional sections containing setting overrides for particular environments (dev, staging, live). This i don't need to replace sections of the file when deploying. I have a small wrapper which you can call to get a particular setting or a dictionary containing all of them.</p> <p>I recently created a <a href="http://www.olegsych.com/2007/12/text-template-transformation-toolkit/" rel="nofollow">T4 template</a> that will read the config file and create a static strongly typed settings class. That's been a huge timesaver.</p>