The System.Configuration is a .net framework namespace contains the types that provide the programming model for handling configuration data.
0
votes
0answers
14 views
Tools for Identifying machine configuration
Basic Need:- I need to develop a tool to identify the machine configurations
More Info:- The main purpose is, before installing our software we want to run this tool on that machine in-order to check ...
0
votes
2answers
58 views
Read value based on key from a Web.config section
I am trying to create a function that can return the corresponding value from web.config based on the key provided
For instance, I have these in my Web.config file:
<Records>
<add ...
1
vote
2answers
80 views
ConfigurationElementCollection with primitive types
I'm working with the System.Configuration namespace types to store configuration for my application. I need to store a collection of primitive types (System.Double) as part of that configuration. It ...
0
votes
0answers
13 views
Facing issues in creating collections winthin collections using System.Configuration Collection classes
I am trying to parse the application configuration file. I am required to use the System.Configuration in the code to access the sections.
The configuration goes as below
<?xml version="1.0" ...
1
vote
0answers
53 views
Custom Configuration Section - Multiple Collections [duplicate]
Possible Duplicate:
How to Create a Configuration Section That Contains a Collection of Collections?
I would like to create something like this custom section in a web.config
...
-2
votes
2answers
972 views
Where is ConfigurationManager's namespace?
I've got a reference to System.Configuration - and ConfigurationSettings is found no problem - but the type or namespace 'ConfigurationManager' could not be found!?
I've read around - and it looks ...
0
votes
2answers
860 views
Best way to store associative array in app.config
I've been working on my software lately and I have been wondering what the best way is to store an associative array.
The only thing I could come up with out of the blue is to do something like this: ...
0
votes
2answers
185 views
C# - Creating and managing application specific project files
One of the specifications for an application I'm developing is that it must work with project files.
My problem comes into how I'm going to fulfill this requirement because, since I'm working toward ...
4
votes
1answer
324 views
How to Create a Configuration Section That Contains a Collection of Collections?
I need a configuration section something like this:
<myConfig>
<mySubConfig1>
<mySubSubConfig1 keyAttribute="value1">
<mySubSubConfig1Element ...
2
votes
2answers
286 views
Avoid repeating property name 3 times using ConfigurationPropertyAttribute
Repeating the ConfigurationPropertyAttribute name three times in the code really bothers me.
It so easy to miss a misspelling or copy/paste a property and forget to update one instance of the name.
...
2
votes
2answers
343 views
Using .NET ConfigurationManager to read settings from a string instead of an app.config file
We are running multiple instances of our service (implemented as a .exe file) on different machines in our data center. However, we would like to store configuration parameters for this .exe file in a ...
0
votes
1answer
173 views
SingleTagSectionHandler returned as DefaultSection
I have an App.conf file which contains:
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="CrystalReport" ...
1
vote
2answers
455 views
Log4Net for MonoTouch
I'm attempting to build Log4Net for MonoTouch but the assemblies required also need to be built for MonoTouch including System.Configuration and I don't have this source.
Has anyone had any luck ...
1
vote
0answers
223 views
How can I detect value syntax errors in app.config files?
I need to improve the reporting of errors in app.config files.
I have a tiny test app that includes a setting of type "int". If I change its value in app.config to something that isn't a valid ...
1
vote
1answer
648 views
I get a system.configuration.settingspropertynotfoundexception error in windows service
I have a windows app that uses SettingsProvider to read configuration settings and sets default values if file does not exist.
It works fine running normally.
I am trying to write a windows ...
2
votes
1answer
354 views
Type cant be resolve in UnitTest after migrating Project from vs2005 to vs2010 (MSTest)
We are actually analyzing what we have to do if we migrate our application from VS2005 up to VS2010.
What i have done:
I opened all solutions in VS2010 and let convert vs the projects.
At the ...
2
votes
2answers
3k views
Simple custom config section with collection in .NET4
I'm trying to write a very simple custom configuration section for a .NET4 application. My goal is this:
<configuration>
<configSections>
<section name="myServices" ...
3
votes
3answers
1k views
How can I use TypeConverters with a ConfigurationSection?
So I've got a ConfigurationSection/ConfigurationElementCollection that has a configuration like this:
<mimeFormats>
<add mimeFormat="text/html" />
</mimeFormats>
And here is ...
1
vote
0answers
318 views
How do I change configsource value in remote configuration file
I'm using ConfigurationManager.OpenMappedExeConfiguration to read and modify web.config files of remote web services. This works well for the most part.
The config file splits out the unity ...
1
vote
1answer
282 views
How better to map configuration elements to application objects?
I have a .NET application which has a custom configuration to re-construct some classes on startup. That's not a plain (de)serialization, that's more complex and mixed.
class FooElement : ...
2
votes
1answer
148 views
Preserve formatting on Configuration.Save()
I have custom ConfigurationSection and call Configuration.Save() after some modifications against it:
var config = ConfigurationManager.OpenMappedExeConfiguration(
new ExeConfigurationFileMap() { ...
7
votes
3answers
1k views
ConfigurationElementCollection with a number of ConfigurationElements of different type
Is it possible to have a CollectionElementCollection with a number of different by type CollectionElements, e.g.:
<collection>
<add type="MyType1, MyLib" Type1SpecificProp="1" />
...
0
votes
2answers
610 views
Getting connection string from App.config and using it in a Linq dataContext
How should I extract the following connection string and apply it to my Linq context? I know the Linq portion, but am weak with the System.Configuration section.
<connectionStrings>
...
1
vote
1answer
1k views
The best way to get a path to machine.config of a different .NET version
Whats the best way to get a path to .net 2.0 machine.config file, if the application is running on .net 4.0?
One way would be to do string manipulation and file system access to replace v4.0* with ...
0
votes
3answers
179 views
How to send a System.Configuration.Configuration object trough WCF
Well I think the title explains for itself.
I'm trying to export a configuration object trough the wire, but it looks quite difficult, the class is not serializable and... it's sealed, so no heritage ...
10
votes
3answers
1k views
Why does ConfigurationValidator validate the default value of a ConfigurationProperty even if IsRequired is true?
Let's say I have a configuration property that looks like this. Note that there is no default value.
[ConfigurationProperty("x", IsRequired = true)]
[StringValidator(MinLength = 1)]
public string X
{
...
2
votes
1answer
985 views
Benefits of .Net's AppSettingsReader vs ConfigurationManager for reading application configuration settings
Is there a substantial difference between the AppSettingsReader class and the AppSettings member of the ConfigurationManager class in .Net 3.5?
I'm building out some legacy code and a previous ...
5
votes
2answers
7k views
Getting config element from ConfigurationElementCollection
I have (hopefully) setup ConfigurationElementCollection of my own design with emails as keys. Now what? Hard to find actually on the web. How do I:
iterate through it?
See if a specific element ...
2
votes
1answer
1k views
Change setting within a “ClientSettingsSection” with C#
Is it possible to change values of settings within a ClientSettingsSection (System.Configuration.ClientSettingsSection) in a exe-configuration? Unfornately the settings in the ClientSettingsSection ...
5
votes
2answers
3k views
System.configuration web.config and app.config
While using a third party dll I was getting the following exception:
exePath must be specified when not running inside a stand alone exe
with the following trace
...
8
votes
3answers
4k views
Using ASPNet_Regiis to encrypt custom configuration section - can you do it?
I have a web application with a custom configuration section. That section contains information I'ld like to encrypt (was hoping to use ASPNet_RegIIS rather than do it myself).
Web.Config:
<?xml ...
6
votes
2answers
911 views
Thread safe usage of System.Configuration
Is there an easy method of accessing custom System.Configuration-based configuration data through a thread-safe interface without requiring each execution context from loading/reloading configuration ...
0
votes
1answer
710 views
HowTo: Detect .Net Configuration Section instance without Loading into memory?
Does anyone know how to detect if an instance of a configuration section exists in a .net configuration file without actually having to load the configuration section into memory, and without having ...
5
votes
3answers
5k views
WCF and System.Configuration namespace
I received an error when an referenced .NET Framework 2.0 assembly tried to execute the following line of code in an IIS hosted WCF service:
Error Message:
exePath must be specified when not
...
5
votes
2answers
1k views
How to load back a dynamically created settingsproperty next time?
I created a way to dynamically add SettingsProperty to a .NET app.config file. It all works nicely, but when I am launching my app the next time I can only see the properties that are created in the ...
2
votes
3answers
2k views
Need to create a dynamic ConfigurationSection that also holds the type
I need to create a configuration section, that is able to store key-value pairs in an app.config file and the key-value pairs can be added runtime regardless of their type. It is also important that ...
11
votes
6answers
5k views
Get the App.Config of another Exe
I have an exe with an App.Config file. Now I want to create a wrapper dll around the exe in order to consume some of the functionalities.
The question is how can I access the app.config property in ...