Tagged Questions

0
votes
5answers
96 views

Migrating a WinForms (C#) APP settings to a .config file.

Hi Guys, I want to migrate the settings file I am currently using to appconfig file. At the moment I am trying to make a copy of it but so far I cannot even get it to write to the file using the …
0
votes
0answers
38 views

WCF Configuration puzzle

The following code works if embedded in a console application whether or not path points to some config file on my local hard drive or a network location: public object GetInstance(InstanceContext …
0
votes
1answer
89 views

Error: The name ‘ConfigurationManager’ does not exist in the current context

I have included the following statement in my Visual C# Console Application (Visual Studio 2005 .NET 2.0 Framework) using System.Configuration; and I am using the following statement in my …
0
votes
2answers
69 views

Can not get a reference to ConfigurationManager

I simply can not get Visual Studio 2005 to find the System.Configuration.ConfigurationManager class. Here is the code: using System.Configuration; ... x = …
1
vote
2answers
292 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
272 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 …
2
votes
1answer
104 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 …
0
votes
2answers
42 views

How to return a verbatim string from ConfigurationManager.AppSetting[”settingname”].ToString()

I am using the ConfigurationManager.AppSetting["blah"].ToString() method to get the path to the folder that contains the files I'm needing. But I'm throwing an UnsupportedFormatException on the path …
13
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 …
2
votes
3answers
254 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 …
0
votes
2answers
402 views

Getting a StringCollection out of AppSettings through the configuration manager

I am accessing my assembly's configuration like this: ExeConfigurationFileMap map = new ExeConfigurationFileMap(); map.ExeConfigFilename = Assembly.GetExecutingAssembly().Location + ".config"; …
3
votes
2answers
492 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
371 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 …
1
vote
4answers
5k views

C# ConfigurationManager.GetSection could not load file or assembly

Hi all, 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: …
0
votes
1answer
1k views

ConfigurationManager.OpenExeConfiguration - loads the wrong file?

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. I try and access the contents of each file using this: …

1 2 3 next
15 30 50 per page