active questions tagged configurationmanager - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T02:08:30Zhttp://stackoverflow.com/feeds/tag/configurationmanagerhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1751087/error-the-name-configurationmanager-does-not-exist-in-the-current-context0Error: The name 'ConfigurationManager' does not exist in the current contextViren2009-11-17T19:14:20Z2009-11-17T19:16:53Z
<p>I have included the following statement in my Visual C# Console Application (Visual Studio 2005 .NET 2.0 Framework)</p>
<pre><code>using System.Configuration;
</code></pre>
<p>and I am using the following statement in my application:</p>
<pre><code>ConfigurationManager.AppSettings["SomeStringOverHere"];
</code></pre>
<p>I try to build the application and I get the error:
The name 'ConfigurationManager' does not exist in the current context.</p>
<p>Any help please?</p>
http://stackoverflow.com/questions/452004/c-configurationmanager-getsection-could-not-load-file-or-assembly1C# ConfigurationManager.GetSection could not load file or assemblyJon2009-01-16T21:06:02Z2009-11-08T13:08:43Z
<p>Hi all,</p>
<p>I am stuck! this seems really daft but I can not see where I am going wrong. I am creating a 2.0 C# ASP.NET website. I am trying to use a custom section in the web.config file with:</p>
<pre><code>DatabaseFactorySectionHandler sectionHandler = ConfigurationManager.GetSection("DatabaseFactoryConfiguration") as DatabaseFactorySectionHandler;
</code></pre>
<p>I have a separate DLL for the Objects which are in Bailey.DataLayer namespace. But when I run the test.aspx page I get the following error:</p>
<pre><code>System.Configuration.ConfigurationErrorsException was unhandled by user code
Message="An error occurred creating the configuration section handler for DatabaseFactoryConfiguration: Could not load file or assembly 'Bailey.DataLayer' or one of its dependencies. The system cannot find the file specified. (C:\\Documents and Settings\\Administrator.PIP\\My Documents\\Visual Studio 2005\\WebSites\\bailey\\web.config line 13)"
Source="System.Configuration"
</code></pre>
<p>The class that I am trying to get is as follows:</p>
<pre><code>namespace Bailey.DataLayer
{
public sealed class DatabaseFactorySectionHandler : ConfigurationSection
{
[ConfigurationProperty("Name")]
public string Name
{
get { return (string)base["Name"]; }
}
[ConfigurationProperty("ConnectionStringName")]
public string ConnectionStringName
{
get { return (string)base["ConnectionStringName"]; }
}
public string ConnectionString
{
get
{
try
{
return ConfigurationManager.ConnectionStrings[ConnectionStringName].ConnectionString;
}
catch (Exception excep)
{
throw new Exception("Connection string " + ConnectionStringName + " was not found in web.config. " + excep.Message);
}
}
}
}
</code></pre>
<p>}</p>
<p>The web config file has this section:</p>
<p></p>
<pre><code><section name="DatabaseFactoryConfiguration" type="Bailey.DataLayer.DatabaseFactorySectionHandler, Bailey.DataLayer" />
</code></pre>
<p></p>
<p>I have done this in a console app without a problem but can not see any differences apart from it being in a web page.</p>
<p><strong>EDIT</strong></p>
<p>It all compiles and throws the error at runtime so I can only assume it find the assembly because it is referenced in the test.aspx.cs page.</p>
<p>I have the following using statement at the top of the test.aspx.cs page:</p>
<pre><code>using Bailey.DataLayer;
</code></pre>
<p>Here is the whole web.config file so there is no confusion:</p>
<pre><code><configuration>
<configSections>
<section name="DatabaseFactoryConfiguration" type="Bailey.DataLayer.DatabaseFactorySectionHandler, Bailey.DataLayer" />
</configSections>
<appSettings/>
<connectionStrings>
<add name="BaileyMDFConString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\bailey.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" />
</connectionStrings>
<DatabaseFactoryConfiguration Name="System.Data.SqlClient" ConnectionStringName="BaileyMDFConString" />
<system.web>
<compilation debug="true"/>
<authentication mode="Windows"/>
</system.web>
</configuration>
</code></pre>
<p>I hope someone can put me out of my missery.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1659061/can-not-get-a-reference-to-configurationmanager0Can not get a reference to ConfigurationManagerTallGuy2009-11-02T01:41:42Z2009-11-02T01:48:14Z
<p>I simply can not get Visual Studio 2005 to find the <em>System.Configuration.ConfigurationManager</em> class. Here is the code:</p>
<pre><code>using System.Configuration;
...
x = ConfigurationSettings.AppSettings["MySetting"]
// The name 'ConfigurationManager' does not exist in the current context
x = System.Configuration.ConfigurationManager.AppSettings["MySetting"]
// The type or namespace name 'ConfigurationManager' does not exist in the
// namespace 'System.Configuration' (are you missing an assembly reference?)
</code></pre>
<p>I absolutely, positively <strong>do</strong> have a reference to <em>System.Configuration</em> in the project and it is definitely in the <strong>right</strong> project. The DLL is version 2.0.0.0 and the runtime version is 2.0.50727 - exactly the same as all the others. I have tried removing the reference and re-adding it. One strange thing is that when it is displayed in the References 'folder' of the project, it is displayed as 'System.configuration' - with a lower case 'c'.</p>
<p>Visual Studio can find the <em>System.Configuration.ConfigurationSettings</em> class with no problem other than the warning that it is obsolete. The project is a web project and the code is in the code-behind of a WebControl.</p>
<p>Any ideas what is going on here?</p>
http://stackoverflow.com/questions/25765/java-configuration-framework12Java configuration frameworkSteen2008-08-25T08:17:54Z2009-10-26T01:43:29Z
<p>I'm in the process of weeding out all hardcoded values in a java library and was wondering what framework would be the best (in terms of zero- or close-to-zero configuration) to handle run-time configuration? I would prefer xml-based config-files, but it's not essential. </p>
<p>Please do only reply if you have practical experience with a framework. I'm not looking for examples, but experience... Thanks for taking the time.</p>
http://stackoverflow.com/questions/1602099/configurationsettings-appsettings-is-empty-throws-null-exception1ConfigurationSettings.AppSettings is empty, throws null exceptionMarvin2009-10-21T16:48:24Z2009-10-21T19:28:50Z
<p>I have a class like this:</p>
<pre><code>public class RxNormFolderMgr
{
// properties
public string RxNormFolder { get { return ConfigurationSettings.AppSettings["rootFolder"].ToString(); } }
}
</code></pre>
<p>When I try to use it like this:</p>
<pre><code>public class TestRxNormFolderManager : ColumnFixture
{
public string RxNormFolder()
{
RxNormFolderMgr folderMgr = new RxNormFolderMgr();
return folderMgr.RxNormFolder;
}
}
</code></pre>
<p>I get an error: "System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object." The AllKeys property for AppSettings is an array of zero length where I am expecting length of 1.</p>
<p>My app.config file in the project looks like this:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="rootFolder" value ="C:\RxNorm" />
<!-- Root folder must not end with slash. -->
</appSettings>
</configuration>
</code></pre>
<p>I know ConfigurationSettings.AppSettings is supposed to be obsolete and I should use ConfigurationManager.AppSettings, but I can't even get that to compile. I do have a reference in the project to System.configuration (c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.configuration.dll on my machine) and using statement at top of my code.</p>
<p>I am using Fitnesse to test the code, and that's when I get the error. It's my understanding that I should also place a copy of the app.config file in the Bin>Debug folder of the test fixtures project which I have done. So, I don't know why I'm getting this error still.</p>
<p>Please, help.</p>
http://stackoverflow.com/questions/1595014/how-to-return-a-verbatim-string-from-configurationmanager-appsettingsettingname0How to return a verbatim string from ConfigurationManager.AppSetting["settingname"].ToString()Josh H.2009-10-20T14:29:16Z2009-10-20T15:11:43Z
<p>I am using the <code>ConfigurationManager.AppSetting["blah"].ToString()</code> method to get the path to the folder that contains the files I'm needing. But I'm throwing an <code>UnsupportedFormatException</code> on the path when it tries to use <code>Directory.GetFiles(path)</code>.</p>
<p>The returning value has the escape characters included and I'm not sure how to keep it from returning the extra characters. This is what the path looks like after it is returned:</p>
<p><code>\\\\\\\\C:\\\\folder1\\\\folder2</code></p>
http://stackoverflow.com/questions/1460459/visual-studio-configuration-manager-missing1Visual Studio: Configuration Manager missingTimwi2009-09-22T14:33:46Z2009-09-22T14:37:41Z
<p>I'm using Microsoft Visual Studio Team System 2008 Team Suite.</p>
<p>The "Configuration Manager" menu item is missing for me. I've assigned a keyboard shortcut to the Configuration Manager, but it doesn't have any effect (actually, it produces a "ding" sound).</p>
<p>How do I get the Configuration Manager to work for all projects?</p>
http://stackoverflow.com/questions/1412235/how-do-you-instruct-nunit-to-load-an-assemblys-dll-config-file-from-a-specific-d1How do you instruct NUnit to load an assembly's dll.config file from a specific directory?Steve Guidi2009-09-11T17:22:16Z2009-09-19T18:53:30Z
<p>If an assembly contains an app.config file, <code>ConfigurationManager</code> will load it as long as it is in the same directory as the NUnit project that is executing through NUnit-Gui. To illustrate consider the following folder structure.</p>
<pre><code>+ TestFolder
testProject.nunit
+ AssemblyAFolder
assemblyA.dll
assemblyA.dll.config
+ AssemblyBFolder
assemblyB.dll
assemblyB.dll.config
</code></pre>
<p>Both <code>AssemblyA</code> and <code>AssemblyB</code> exercise code that calls into <code>ConfigurationManager</code>. If I run these test assemblies independently in NUnit-Gui, <code>ConfigurationManager</code> will correctly resolve the local configuration files.</p>
<p>However, if I load <code>testProject.nunit</code> into NUnit-Gui (which contains references to both <code>AssemblyA</code> and <code>AssemblyB</code>), <code>ConfigurationManager</code> looks for the configuration file in <code>TestFolder</code> regardless of which assembly is currently executing.</p>
<p>Is there a way to direct NUnit to reload the application configuration to the one present in the current assembly's directory?</p>
<p>Here are the contents of <code>testProject.nunit</code>:</p>
<pre><code><NUnitProject>
<Settings activeconfig="Debug" />
<Config name="Debug" binpathtype="Auto">
<assembly path="AssemblyAFolder\assemblyA.dll" />
<assembly path="AssemblyBFolder\assemblyB.dll" />
</Config>
</NUnitProject>
</code></pre>
http://stackoverflow.com/questions/1269683/binding-to-configurationsection1Binding to ConfigurationSectiondaub8152009-08-13T02:08:42Z2009-08-13T04:33:21Z
<p>I just converted all my settings from AppSettings to ConfigurationSections. It definitely cleaned things up, but I'm having difficulties with the preferences window. I want to use bindings in my WPF window. </p>
<ul>
<li>Should I store each of the ConfigurationSections in a dependency property and bind to the ConfigurationSection's properties?</li>
<li>Should I use ObjectDataProvider's that calls the ConfigurationManager.GetSection?</li>
<li>Is there another way I can do this?</li>
</ul>
<p>Off-topic: I find the bindings in WPF to be really powerful, but it's sometimes a bit confusing or difficult to create the bindings. I wish there was better documentation for XAML.</p>
http://stackoverflow.com/questions/1265207/in-shared-addin-extensibility-how-to-get-application-configuration-file0In Shared Addin Extensibility how to get Application Configuration File?shahjapan2009-08-12T09:40:23Z2009-08-12T10:48:49Z
<p>In case of VSTO this <code>AppDomain.CurrentDomain.SetupInformation.ConfigurationFile</code> This Returns the Configuration file of the Executing Plugin, while shared add-in Returns False Configuration File as AppDomain returns d:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE instead of the Assembly of the Plugin. My Question is how can I get the domain of my plugin?</p>
<p>VSTO-> Adding Assembly Domain</p>
<p>SharedAddin-> Excel.exe Domain</p>
<p>how can I get the AppDomain of Plugin instead of Host Application.</p>
http://stackoverflow.com/questions/1254677/change-in-appsettings-needs-restart-my-application-how-can-i-avoid3Change in AppSettings needs restart my Application how can I avoid?shahjapan2009-08-10T12:47:17Z2009-08-10T13:01:25Z
<p>I'm using C# .NET 2.0 Windows Application.</p>
<p>and I'm using app.config for my Application Settings.</p>
<p>but change in AppSettings doesn't reflected runtime, it Needs Application to be restarted.</p>
<p>How can I avoid it.</p>
<p>Here is my code snippet I used to read and write the Application Settings.</p>
<p>I'm reading the Setting like this</p>
<pre><code>string temp = ConfigurationManager.AppSettings.Get(key);
</code></pre>
<p>I'm updating the value like this where node is the current configuration/appSettings Node</p>
<pre><code>node.Attributes["value"].Value = value;
xmlDoc.Save(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
</code></pre>
http://stackoverflow.com/questions/1235784/getting-a-stringcollection-out-of-appsettings-through-the-configuration-manager0Getting a StringCollection out of AppSettings through the configuration managerrschuler2009-08-05T21:12:22Z2009-08-05T22:28:16Z
<p>I am accessing my assembly's configuration like this:</p>
<pre><code>ExeConfigurationFileMap map = new ExeConfigurationFileMap();
map.ExeConfigFilename = Assembly.GetExecutingAssembly().Location + ".config";
Configuration conf = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
AppSettingsSection appSettings = conf.AppSettings;
</code></pre>
<p>My .config file contains a section like this</p>
<pre><code><configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="CsDll.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<connectionStrings>
<add name="CsDll.Properties.Settings.SabreCAD" connectionString="A Connection string." />
<add name="CsDll.Properties.Settings.StpParts" connectionString="Another connection string" />
</connectionStrings>
<applicationSettings>
<CsDll.Properties.Settings>
<setting name="StpInsertSearchPath" serializeAs="Xml">
<value>
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>A string</string>
<string>Another string in the collection</string>
</code></pre>
<p>I can successfully read the connection strings including changes if I edit the .config file. So, I know I am connected to the correct file. But I cannot find that string collection inside of the appSettings object. It is is not in the .Settings KeyValueConfigurationCollection. Where do I find my string collection?</p>
http://stackoverflow.com/questions/1196290/how-can-i-get-configurationmanager-to-load-application-settings-from-multiple-fil3How can I get ConfigurationManager to load application settings from multiple files?Robert Rossney2009-07-28T19:34:50Z2009-07-28T21:37:29Z
<p>I'm writing applications that interoperate with a third-party application. This application exposes an API to developers via methods in a DLL. Some time ago, the vendor of this app started integrating their own .NET components into their program, and when they did, they decided that their components should use the <code>ConfigurationManager</code> to get settings at runtime.</p>
<p>What this means: their program, <code>foo.exe</code>, calls <code>fooengine.dll</code>, and it reads its settings from <code>foo.exe.config</code>. My program, <code>bar.exe</code>, also calls <code>fooengine.dll</code>, and it reads its settings from <code>bar.exe.config</code>.</p>
<p>Well, that's just plain wrong. But how do I fix it?</p>
<p>The simple workaround is to replicate <code>foo.exe.config</code>'s settings in <code>bar.exe.config</code>. That'll work, but it's <em>stupid</em>. It means that from an administrative standpoint, a given setting has to be maintained in N different files. That's going to fail sooner or later.</p>
<p>I tried putting a <code>configSource</code> attribute on the <code>appSettings</code> section in my config file. (As it happens, I'm using the <code>applicationSettings</code> section for my settings, and they're using the <code>appSettings</code> section for theirs, so I can live with simply getting that section from a different file.) But the <code>ConfigurationManager</code> doesn't like that: it wants the path in <code>configSource</code> to be not only relative to but <em>below</em> my program's directory.</p>
<p>I can physically read their settings file into an <code>XmlDocument</code> and then set them myself. But now I'm tightly coupling my code to their implementation; if they put out a new release that moves the settings to the <code>applicationSettings</code> section (which is where they <em>should</em> be now that it's 2009), my code will break.</p>
<p>Is there another way out of this?</p>
http://stackoverflow.com/questions/1188681/can-someone-provide-a-quick-app-config-web-config-tutorial3Can someone provide a quick App.config/Web.config tutorial?SkippyFire2009-07-27T14:59:55Z2009-07-27T15:12:02Z
<p>I've used these two configuration files many times before, but I've never taken the time to fully understand how they really work. As most people do, I understand the basics in how to call <code>WebConfigurationManager.AppSettings["key"]</code> to get config values.</p>
<p>Here are some questions I came up with:</p>
<ol>
<li>What happens when you reference a configuration value within a class library, and the library is part of a bigger solution? Does the app.config need to be copied to the output directory in order for the variables to be found? (I assume yes)</li>
<li>Can you directly use a configuration value from an app.config in another class library?</li>
<li>Assuming question 3 is "yes", what happens if there are multiple app.config files from different libraries containing configuration values with the same key?</li>
<li>What happens when you reference the web.config, but in a class library?</li>
<li>What happens when you reference the app.config, but in a website or web application project?</li>
</ol>
http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object4How can I write to my own app.config using a strongly typed object?Ryan ONeill2009-06-25T15:07:23Z2009-07-08T20:25:37Z
<p>The following code has two flaws, I can't figure out if they are bugs or by design. From what I have seen it should be possible to write back to the app.config file using the Configuration.Save and according to <a href="http://www.codeproject.com/KB/cs/SystemConfiguration.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/SystemConfiguration.aspx</a> the code should work.</p>
<p>The bugs are shown in the source below and appear when you try to set the property or save the config back out.</p>
<pre><code>Imports System.Configuration
Public Class ConfigTest
Inherits ConfigurationSection
<ConfigurationProperty("JunkProperty", IsRequired:=True)> _
Public Property JunkProperty() As String
Get
Return CStr(Me("JunkProperty"))
End Get
Set(ByVal value As String)
' *** Bug 1, exception ConfigurationErrorsException with message "The configuration is read only." thrown on the following line.
Me("JunkProperty") = value
End Set
End Property
Public Sub Save()
Dim ConfigManager As Configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None)
' The add / remove is according to http://www.codeproject.com/KB/cs/SystemConfiguration.aspx
ConfigManager.Sections.Remove("ConfigTest")
' *** Bug 2, exception InvalidOperationException thrown with message "Cannot add a ConfigurationSection that already belongs to the Configuration."
ConfigManager.Sections.Add("ConfigTest", Me)
ConfigManager.Save(ConfigurationSaveMode.Full, True)
End Sub
Public Shared Sub Main()
Dim AppConfig As ConfigTest = TryCast(ConfigurationManager.GetSection("ConfigTest"), ConfigTest)
AppConfig.JunkProperty = "Some test data"
AppConfig.Save()
End Sub
' App.Config should be:
' <?xml version="1.0" encoding="utf-8" ?>
'<configuration>
' <configSections>
' <section name="ConfigTest" type="ConsoleApp.ConfigTest, ConsoleApp" />
' </configSections>
' <ConfigTest JunkProperty="" />
'</configuration>
End Class
</code></pre>
<p>I'd like to do it this way so that on the first run of the app I check for the properties and then tell the user to run as admin if they need to be set, where the UI would help them with the settings. I've already 'run as admin' to no effect.</p>
http://stackoverflow.com/questions/1087539/forcing-configurationmanager-to-reload-all-sections0Forcing ConfigurationManager to reload all sectionssiz2009-07-06T15:12:28Z2009-07-06T15:12:28Z
<p>I am writing a configuration system in which the app.config file is dynamically constructed from various config fragments distributed across multiple locations. The system currently works as follows:</p>
<ol>
<li>Bootstrapper builds configuration file.</li>
<li>Bootstrapper initializes new AppDomain with new config file as the configuration file.</li>
<li>As a result, new AppDomain is configured to use new config file and all works fine.</li>
</ol>
<p>We'd like to move away from this multiple AppDomain approach; it adds a layer of complexity, especially when it comes to unmanaged libraries and other legacy code.</p>
<p>In moving to one AppDomain, the workflow would change to:</p>
<ol>
<li>Bootstrapper builds configuration file.</li>
<li>Bootstrapper merges the configuration file into its own configuration file.</li>
<li><strong>Bootstrapper refreshes its ConfigurationManager cache.</strong></li>
<li>Bootstrapper launches main app in the same AppDomain.</li>
</ol>
<p>It seems that the ConfigurationManager caches sections in memory. So for example, if I read the AppSettings before step #3, I have to call: <code>ConfigurationManager.RefreshSection("appSettings");</code> In fact, I have to make sure that any section that has been used by the bootstrapper, is refreshed. </p>
<p>I am able to iterate over all of the config sections in the new config file and force refresh them, but, this forces the configuration manager to load any assemblies referenced in the config file. I'd like to defer this if possible. If there a way to invalidate what the ConfigurationManager currently has in memory?</p>
http://stackoverflow.com/questions/1083927/configurationmanager-openexeconfiguration-loads-the-wrong-file0ConfigurationManager.OpenExeConfiguration - loads the wrong file?unknown (yahoo)2009-07-05T11:55:41Z2009-07-05T12:17:17Z
<p>I have added multiple app.config (each with a differet name) files to a project, and set them to copy to the output directory on each build.</p>
<p>I try and access the contents of each file using this:</p>
<pre><code>System.Configuration.Configuration o = ConfigurationManager.OpenExeConfiguration(@"app1.config");
</code></pre>
<p>The code runs, but o.HasFile ends up False, and o.FilePath ends up "app1.config.config". If I change to code:</p>
<pre><code>System.Configuration.Configuration o = ConfigurationManager.OpenExeConfiguration(@"app1");
</code></pre>
<p>Then the code bombs with "An error occurred loading a configuration file: The parameter 'exePath' is invalid. Parameter name: exePath".</p>
<p>If I copy/paste the config file (so I end up with app1.config and app1.config.config) then the code runs fine, however, I posit this is not a good solution. My question is thus: how can I use ConfigurationManager.OpenExeConfiguration to load a config file corretly?</p>
http://stackoverflow.com/questions/851783/system-configuration-configurationmanager-not-available1System.Configuration.ConfigurationManager not available? kpollock2009-05-12T08:42:58Z2009-07-02T11:35:24Z
<p>In a VS2005 C# project I have added a reference to System.configuration.
In the object browser, I can see the System.Configuration.ConfigurationManager.
In Intellisense System.Configuration only has the old ConfigurationSettings, and not ConfigurationManager.</p>
<p>My code
System.Configuration.ConfigurationManager.AppSettings["MySetting"]</p>
<p>is highlighted as a syntax error and does not compile.</p>
<p>In a different project, the exact same setup works just fine... any clues as to what is going on?</p>
http://stackoverflow.com/questions/1006574/how-to-persist-app-config-through-clickonce-updates-using-configurationmanager0How to persist app.config through ClickOnce updates using ConfigurationManager?Matthew Scharley2009-06-17T12:01:15Z2009-06-17T12:35:34Z
<p><a href="http://stackoverflow.com/questions/622764/persisting-app-config-variables-in-updates-via-click-once-deployment">This question</a> describes my problem exactly, except I'm using a custom configuration section in <code>app.config</code> with <code>ConfigurationManager</code>, so the solution presented there doesn't apply...</p>
<p>Basically, my problem is that when ClickOnce updates the application, it installs into a different directory with the new app.config, thereby erasing any changes made. My application uses app.config to persist application settings, so this is very bad... a merged update would be excellent (similar to what is achieved in the other question), but just about anything automated would be good at this point.</p>
<p>Or should I just use a set location for my app.config file rather than try to use the default location?</p>
http://stackoverflow.com/questions/938585/open-other-programs-configuration-files0Open other program's configuration filesManzoor Ahmed2009-06-02T09:05:42Z2009-06-02T09:11:41Z
<p>I have a program <strong>A</strong>, it also have an app.config file where I have added some keys like server address, username and password for connecting to a server. It is a console application. Now I want to make a UI which I have done. In that UI I want to modify the content of app.config of program <strong>A</strong>. How do I do that? </p>
<p>Here is what I tried, I copied the UI (basically an .exe) to program <strong>A's</strong> directory, where the app.config also resides. Then in the UI, I use the <em>ConfigurationManager</em> class's <em>OpenExeConfiguration</em> method, and passing the program <strong>A's</strong> filename as an argument. But it throws and exception of type <em>System.Configuration.ConfigurationErrorsException</em>.</p>
<p>So I think that my approach is incorrect. How shall I do this?</p>
<p><strong>EDIT:</strong> Oh I forgot to tell I'm using C#, .NET 3.5 and VS 2008 (if that helps :D)</p>
http://stackoverflow.com/questions/853294/how-do-i-give-my-ashx-access-to-configurationmanager-connectionstrings0How do I give my .ASHX access to ConfigurationManager.ConnectionStrings?Ryan2009-05-12T15:14:00Z2009-05-30T06:45:49Z
<p>I have included the same files that other pages have that use it but for some reason it's just not finding it. How do I include access to it?</p>
http://stackoverflow.com/questions/831281/do-i-have-to-derive-from-configurationsection-to-support-per-user-settings0Do I have to derive from ConfigurationSection to support per-user settings?David Pope2009-05-06T19:23:17Z2009-05-06T21:51:34Z
<p>I'm playing around with .NET's configuration support (the ConfigurationManager class and related support classes). I would like to write an application that, once installed:</p>
<ul>
<li>Has default settings in foo.exe.config (in Program Files).</li>
<li>The user may later override the settings with nondefault values which should be persisted.</li>
<li>The user's preferences should be persisted in the user's profile, since he shouldn't have write permissions to the Program Files directory.</li>
</ul>
<p>The app should use the user's preferences when they're set, otherwise use the defaults.</p>
<p>It seems like this ought to be easy - it's a very common pattern. But my attempts at this are running into bumps and I'm wondering if I'm taking the right approach.</p>
<p>The following code produces the runtime exception "ConfigurationSection properties cannot be edited when locked".</p>
<pre><code>using System;
using System.Configuration;
namespace DemoAppSettingsProblem
{
class Program
{
static void Main(string[] args)
{
Configuration userConfig =
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
if ( userConfig.AppSettings.Settings["foo"] != null )
userConfig.AppSettings.Settings.Remove("foo");
userConfig.AppSettings.Settings.Add("foo", "The string is foo.");
userConfig.Save(ConfigurationSaveMode.Modified); // exception!
}
}
}
</code></pre>
<p>The problem is that the .NET-defined <code><appSettings></code> section is declared with the default <code>allowExeDefinition=MachineToApplication</code> (see this <a href="http://blogs.msdn.com/irenak/archive/2006/03/01/541317.aspx" rel="nofollow">nice post</a> by Microsoft's Irena Kennedy). This prohibits the section from being written to the user's profile (either local or roaming).</p>
<p>So, I assume I need to define my own section, with <code>allowExeDefinition=MachineToLocalUser</code>. But as far as I can tell from the MSDN docs, that means I need to create my own configuration class, derived from <code>ConfigurationSection</code>. The examples there point me toward more work than I was expecting, which usually sets off my alarm bells that I'm doing something wrong.</p>
<p>Is it really this difficult to achieve this? Is there a simple way .NET provides to support this, or should I perhaps be taking a different approach altogether?</p>
http://stackoverflow.com/questions/793657/how-to-find-path-of-active-app-config-file5How to find path of active app.config file?MatthewMartin2009-04-27T14:08:53Z2009-05-06T20:46:09Z
<p>I'm trying to finish this exception handler:</p>
<pre><code>if (ConfigurationManager.ConnectionStrings["ConnectionString"]==null)
{
string pathOfActiveConfigFile = ...?
throw new ConfigurationErrorsException(
"You either forgot to set the connection string, or " +
"you're using a unit test framework that looks for "+
"the config file in strage places, update this file : "
+ pathOfActiveConfigFile);
}
</code></pre>
<p>This problem seems to only happen to me when I'm using nUnit.</p>
http://stackoverflow.com/questions/20952/is-there-a-way-to-get-a-system-configuration-configuration-instance-based-on-arbi2Is there a way to get a System.Configuration.Configuration instance based on arbitrary xml?Matt2008-08-21T19:49:31Z2009-04-01T09:47:59Z
<p>I'm trying to unit test a custom ConfigurationSection I've written, and I'd like to load some arbitrary configuration XML into a <a href="http://msdn.microsoft.com/en-us/library/system.configuration.configuration.aspx" rel="nofollow">System.Configuration.Configuration</a> for each test (rather than put the test configuration xml in the Tests.dll.config file. That is, I'd like to do something like this:</p>
<pre><code>Configuration testConfig = new Configuration("<?xml version=\"1.0\"?><configuration>...</configuration>");
MyCustomConfigSection section = testConfig.GetSection("mycustomconfigsection");
Assert.That(section != null);
</code></pre>
<p>However, it looks like <a href="http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.aspx" rel="nofollow">ConfigurationManager</a> will only give you Configuration instances that are associated with an EXE file or a machine config. Is there a way to load arbitrary XML into a Configuration instance?</p>
http://stackoverflow.com/questions/698157/whats-the-difference-between-the-webconfigurationmanager-and-the-configurationma5What's the difference between the WebConfigurationManager and the ConfigurationManager?SkippyFire2009-03-30T17:20:45Z2009-03-30T21:06:50Z
<p>What's the difference between the WebConfigurationManager and the ConfigurationManager?</p>
<p>When should I use one over the other?</p>
<p><strong>UPDATED</strong></p>
<p>I just looked at the WebConfigurationManager, and for some reason, you can't access the connection strings as you do in the ConfigurationManager (like an array). Can anyone tell me why MS made it like this? It seems to be a pain to get the connection string you need using the WebConfigurationManager.</p>
<p><strong>UPDATED AGAIN with CAVEAT!</strong></p>
<p>If you don't have a reference to the "System.Configuration" namespace added to your project, then Visual Studio will show an error when you try and access the WebConfigurationManager.ConnectionStrings like an array!</p>
http://stackoverflow.com/questions/586140/app-config-and-configurationmanager2App.config and ConfigurationManagerSir Psycho2009-02-25T14:15:58Z2009-02-25T14:27:44Z
<p>Hi,</p>
<p>If I call the OpenMappedExeConfiguration() method and specify a config file (filemap) as a parameter, does this mean that the ConfigurationManager will use the newly specified config file from that point onwards and ignore app.config?</p>
<p>I know that ConfigurationManager looks for app.config by default, but because the OpenMappedExeConfiguration() method returns a Configuration object, its almost as if the instance returned is the only applicable to the config file specified, but I'm not 100% sure.</p>
http://stackoverflow.com/questions/522313/how-can-i-set-a-network-connection-to-use-the-aes-encryption-method-on-a-windows1How can I set a network connection to use the AES encryption method on a Windows Mobile device?Symmetric2009-02-06T21:43:30Z2009-02-11T17:38:11Z
<p>I am trying to configure a network connection using ConfigurationManager.ProcessConfiguration, with the configuration file as specified in the MSDN <a href="http://msdn.microsoft.com/en-us/bb737539.aspx" rel="nofollow">docs</a>. I can create a connection, and configure all of the settings correctly except for the encryption type. No matter what I choose, it is always set to TKIP. I need to set it to AES, which is the only other option in the drop-down menu for this property on the device.</p>
<p>The xml I'm sending looks like this (OMA device provisioning format):</p>
<pre><code><wap-provisioningdoc>
<characteristic type="Wi-Fi">
<characteristic type="access-point">
<characteristic type="Name">
<parm name="Authentication" value="4" />
<parm name="Encryption" value="5" >
<parm name="Hidden" value="1" />
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
</code></pre>
<p>I've tried values of 0-5 for the 'Encryption' param, but none of these have any effect.</p>
<p>Any ideas?</p>
<p>Thanks,
P</p>
http://stackoverflow.com/questions/389361/configurationmanager-appsettings-caching-doubt2ConfigurationManager.AppSettings Caching doubtJader Dias2008-12-23T16:33:31Z2008-12-24T13:27:45Z
<p>We know that IIS caches ConfigurationManager.AppSettings so it reads the disk only once until the web.config is changed. This is done for performance purposes.</p>
<p>Someone at:</p>
<p><a href="http://forums.asp.net/p/1080926/1598469.aspx#1598469" rel="nofollow">http://forums.asp.net/p/1080926/1598469.aspx#1598469</a></p>
<p>stated that .NET Framework doesn't do the same for app.config, but it reads from the disk for every request. But I find it hard to believe, 'cause it would be slower. Please tell me that he is wrong or I'll have to fix every Console/Windows Forms/Windows Services I wrote.</p>
<p><strong>Update</strong> I regret that I misinterpreted what people said in the linked forum above.</p>
http://stackoverflow.com/questions/242468/where-does-configurationmanager-connectionstrings-get-its-value0Where does ConfigurationManager ConnectionStrings get its value?willem2008-10-28T07:24:34Z2008-10-28T07:45:47Z
<p>In my ASP.NET application I have a web.config file. In the web.config file I have a connection string...</p>
<pre><code><connectionStrings>
<add name="HRDb" connectionString="xxxxx" providerName="System.Data.SqlClient" />
</connectionStrings>
</code></pre>
<p>Yet, when I retrieve this value using ConfigurationManager.ConnectionStringsp["HRDb"], I get the my old connection string, not the new one.</p>
<p>Where else (apart from web.config) does the ConfigurationManager read connection string values from?</p>
<p>I'm running the application from VS.NET (not deployed to IIS).</p>
http://stackoverflow.com/questions/19589/loading-system-servicemodel-configuration-section-using-configurationmanager4Loading System.ServiceModel configuration section using ConfigurationManagerDavidWhitney2008-08-21T10:27:59Z2008-08-21T10:51:07Z
<p>Using C# .NET 3.5 and WCF, I'm trying to write out some of the WCF configuration in a client application (the name of the server the client is connecting to).</p>
<p>The obvious way is to use ConfigurationManager to load the configuration section and write out the data I need.</p>
<pre><code> var serviceModelSection = ConfigurationManager.GetSection("system.serviceModel");
</code></pre>
<p>Appears to always return null.</p>
<pre><code> var serviceModelSection = ConfigurationManager.GetSection("appSettings");
</code></pre>
<p>Works perfectly.</p>
<p>The configuration section is present in the App.config but for some reason ConfigurationManager refuses to load the system.ServiceModel section.</p>
<p>I want to avoid manually loading the xxx.exe.config file and using XPath but if I have to resort to that I will. Just seems like a bit of a hack.</p>
<p>Any suggestions?</p>