Tagged Questions
The system.configuration tag has no wiki summary.
9
votes
6answers
3k 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 ...
5
votes
2answers
518 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
{
...
4
votes
3answers
450 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" />
...
4
votes
2answers
450 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 ...
4
votes
3answers
3k 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
...
3
votes
3answers
290 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 ...
3
votes
2answers
1k 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 following trace
...
3
votes
3answers
2k 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 ...
2
votes
1answer
90 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
1answer
76 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() { ...
2
votes
1answer
339 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 ...
2
votes
3answers
3k 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
555 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 ...
2
votes
1answer
794 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 ...
1
vote
1answer
44 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 ...
1
vote
2answers
210 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" ...
1
vote
0answers
184 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
131 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 : ...
1
vote
1answer
532 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 ...
1
vote
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 ...
0
votes
0answers
35 views
Using IConfigurationSectionHandler in .NET 4.0 with garbage collection issue
I was wondering if anyone out there had seen garbage collection / memory usage issues with IConfigurationSectionHandler and .NET 4.0. Let me explain...
I am using the deprecated ...
0
votes
0answers
54 views
ConfigurationElement.DeserializeElement doesn't operate on a XmlNode
I use this object
using System.Configuration;
using System.Xml;
public class MyConfigElement : ConfigurationElement
{
/* ... some code for accessing the attributes */
public static ...
0
votes
2answers
174 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>
...
0
votes
3answers
107 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 ...
0
votes
1answer
557 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 ...