12
votes
10answers
1k views
Java configuration framework
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 …
5
votes
6answers
1k views
How to find path of active app.config file?
I'm trying to finish this exception handler:
if (ConfigurationManager.ConnectionStrings["ConnectionString"]==null)
{
string pathOfActiveConfigFile = ...?
throw new …
5
votes
3answers
866 views
What’s the difference between the WebConfigurationManager and the ConfigurationManager?
What's the difference between the WebConfigurationManager and the ConfigurationManager?
When should I use one over the other?
UPDATED
I just looked at the WebConfigurationManager, and for some …
4
votes
4answers
589 views
How can I write to my own app.config using a strongly typed object?
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 …
4
votes
3answers
3k views
Loading System.ServiceModel configuration section using ConfigurationManager
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).
The obvious way is to use …
3
votes
2answers
468 views
How can I get ConfigurationManager to load application settings from multiple files?
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 …
3
votes
2answers
347 views
Can someone provide a quick App.config/Web.config tutorial?
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 …
3
votes
3answers
511 views
Is there a way to get a System.Configuration.Configuration instance based on arbitrary xml?
I'm trying to unit test a custom ConfigurationSection I've written, and I'd like to load some arbitrary configuration XML into a System.Configuration.Configuration for each test (rather than put the …
2
votes
1answer
89 views
Visual Studio: Configuration Manager missing
I'm using Microsoft Visual Studio Team System 2008 Team Suite.
The "Configuration Manager" menu item is missing for me. I've assigned a keyboard shortcut to the Configuration Manager, but it doesn't …
2
votes
3answers
237 views
Change in AppSettings needs restart my Application how can I avoid?
I'm using C# .NET 2.0 Windows Application.
and I'm using app.config for my Application Settings.
but change in AppSettings doesn't reflected runtime, it Needs Application to be restarted.
How can I …
2
votes
1answer
723 views
App.config and ConfigurationManager
Hi,
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 …
2
votes
4answers
712 views
ConfigurationManager.AppSettings Caching doubt
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.
Someone at:
…
1
vote
2answers
215 views
ConfigurationSettings.AppSettings is empty, throws null exception
I have a class like this:
public class RxNormFolderMgr
{
// properties
public string RxNormFolder { get { return ConfigurationSettings.AppSettings["rootFolder"].ToString(); } }
}
When I try …
1
vote
2answers
243 views
How do you instruct NUnit to load an assembly’s dll.config file from a specific directory?
If an assembly contains an app.config file, ConfigurationManager 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 …
1
vote
1answer
37 views
Binding to ConfigurationSection
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 …
