1
vote
2answers
42 views

ConfigurationManager.AppSettings use another config file

i have about 10 methods in my class in every method i use ConfigurationManager.AppSettings to get value form App.config file like _applicationPort = ...
0
votes
0answers
25 views

Managing Multiple configs VS single configs in a dot net solution

I have certain doubts with respect to managing Configuration in config files in a typical dotnet application. Here is the case that I present: The solution is a WPF based application and is ...
0
votes
1answer
13 views

nameValueCollection inside an element of a configurationElementCollection

How can I use a nameValueCollection inside an element of a configurationElementCollection? Something like this: <connectionsSection> <vendors> <add name="nhonho" ...
0
votes
1answer
44 views

Read appconfig from project reference

On my main project("Demo") I'm added a project reference to some project ("Common"). In "Common" project I'm have app.config file which contain: <configuration> <appSettings> ...
0
votes
1answer
51 views

Defer connection to datasources defined in application.conf

Say I have a database called "awesome" which is located on a live server and at the same time duplicated on a staging server for testing. My web app is based on Play 2.1.1 using Scala. So I have these ...
0
votes
0answers
34 views

add application listener by code

i want convert every thing to C# code . <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.diagnostics> <sources> <source propagateActivity="true" ...
2
votes
1answer
16 views

Modifying a config section saves that section to a different config file

I have myapp.somenamespace.exe.config file with a connectionStrings section, which I need to encrypt. Also there are some other config settings that I want intact. So I wrote this small tool that ...
0
votes
0answers
33 views

Duplicate keys in custom configuration section - will the last always be chosen?

If I define a custom section in my App.config file, and add duplicate keys, for example: <myCustomSection> <add key="Foobar" value="AppConfig,FirstValue" /> <add key="Foobar" ...
0
votes
2answers
61 views

How to force application to use different config file?

I have several winforms applications that need access to the same app.config file. Instead of creating app1.config, app2.config, app3.config, etc... is there a way to somehow tell the ...
0
votes
1answer
45 views

Why does this collection seem to contain objects?

I have a class "ImageElementCollection : ConfigurationElementCollection" containing elements of a class "ImageElement : ConfigurationElement". Using the advice of some other very intelligent persons ...
0
votes
0answers
21 views

TCPClient ConfigurationErrorsException

I have an app.config file in my project and I am reading it in a function(VB.NET), in the same function when I am trying to initialize a TCPClient variable it throws the following exception: ...
1
vote
2answers
138 views

c# there is no relevant app.config after release

can somebody please tell me how to treat with app.config? It created itself when I created some values in app.Properties. I set the code file to "CopyAlways". But, when I compile application in debug ...
0
votes
2answers
77 views

Customized IEnumerable in ConfigurationSection II

Original question and code: C# Customized IEnumerable in ConfigurationSection Advancing in solution to this and with @Daniel Hilgarth answer I have changed (app.config) this: <section name="Disk" ...
0
votes
2answers
105 views

Customized IEnumerable in ConfigurationSection

I need to create a simple customized ConfigurationSection with an IEnumerable inside it. I have read several articles and stackoverflow links, taking this as a simple example: How to create custom ...
1
vote
2answers
210 views

Declaring per-user (roaming user) configuration settings for a plugin DLL?

How can I setup support for per (roaming) user configuration settings for a particular plugin .DLL loaded from another application? I have a .DLL that is loaded as add-in/plugin from another ...
0
votes
1answer
113 views

How do I perform custom Configuration File transformations in Visual Studio 2012

I'm building an .NET 4.5 Application which I eventually run through ILMerge to produce a single .exe and a single .exe.config at the end. I have a post build event which does 2 things. Run ILMerge ...
0
votes
1answer
63 views

App.config issues

When i modified my app.config to include the ReflectSoftware logging infomration, Ninjatrader crashed. Can you point out where I did not configure it correctly? ?xml version="1.0" encoding="utf-8" ...
1
vote
2answers
56 views

Is there a way to store connection strings in a central location other than machine.config

I am currently trying to ease the configuration hell that exists on our client-servers. We have something like 8 applications who each have their own connection string info, and we were hoping to ...
2
votes
2answers
342 views

Change connection strings in Winforms

I am developing win forms and i have App config file .How can I write to connection strings section of app config file? My current App.Config file is <?xml version="1.0" encoding="utf-8" ?> ...
1
vote
1answer
81 views

How do I get my application to choose between two app.config files?

I want to create two app.config files and let the user decide which one to use by a command line argument. How do I get my application to use one .config or the other within my code? I am using a ...
0
votes
1answer
80 views

Few basic query regarding entries in config file for WCF service end as a wcf starter

i am very new in WCF world. i just download a code and saw the wcf service config file but confusion is occuring in my mind regarding entries in config file for WCF service due to my lack of ...
0
votes
0answers
13 views

Is there a way to mark my custom section in config as “may be optionally present” [duplicate]

Possible Duplicate: Unable to create a custom section for web.config I made a custom config section and I want it to be optionally present. Is that the default or if you define your custom ...
0
votes
2answers
95 views

Unable to create a custom section for web.config

I created a custom section in the web.config file but it isn't able to load my custom type that is going to manage the section. Here are the definitions: <configSections> <section ...
1
vote
2answers
255 views

Configuration element containing a collection of child elements

I want to have a custom section in my web.config like so: <MyMainSection attributeForMainSection = "value foo"> <add name = "foo" type = "The.System.Type.Of.Foo, Assembly, ...
0
votes
2answers
111 views

Validate Values in the App.Config

just a quick fire question and wondering on the correct approach. In the appConfig in the Appsettings I want to validate the values that I have entered.So for example if I have <appSettings> ...
0
votes
0answers
52 views

How does .NET dynamically instantiate types by reading the config file?

How does .NET instantiate objects when it reads this type of information from the web.config. <configSections> <section name="example" type="Examples.Configuration.ExampleSection, ...
1
vote
2answers
653 views

Access to path denied for App.Config on Windows 8. How can I update App.Config?

The following code works on Windows XP and Windows 7: var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); config.AppSettings.Settings.Remove(key); ...
1
vote
1answer
285 views

How can I introduce a config filel to Powershell scripts?

Assume that I have a Powershell script called Foo.ps1 I would like to introduce an XML configuration file called Foo.ps1.config where I can specify my environment settings something like: ...
0
votes
0answers
33 views

.NET Custom Configuration. Reference one section key from another section

I have googled my ass of, but all I come across is different versions of the same basic examples of setting up custom configuration, which I have already done. What I want to achieve is being able to ...
0
votes
1answer
38 views

Why aren't all my settings in the user.config file?

I'm writing an application which can edit some of of the user settings, which I define in the Settings.settings. once I run the application I can see find the application's data store in: ...
0
votes
2answers
314 views

Load a WPF app.config / MyApp.exe.config from a location different from the app binary directory

I would like to load the MyApp.exe.config from a sub folder of the app bin folder rather than the app bin folder itself (eg ./Configs/MyApp.exe.config). I dont want to have to work with a ...
0
votes
1answer
146 views

Accessing App.config

I have the following in my App.config, how do I make the code below it work???? configuration> <configSections> </configSections> <connectionStrings> <add ...
0
votes
1answer
109 views

.NET How to generate schema for app.config?

Using the ConfigurationManager code/annotation configuration, I can define a rich, typed model for my app.config structure. Is there a way (or tool or special incantation) to generate the ...
1
vote
1answer
306 views

Using ConfigurationManager.GetSection in a Class Library's App.config

I am writing a class library which has settings in its app.config and which will ultimately be called by a small number of other .NET applications. In order to get settings from it I'm using ...
0
votes
0answers
50 views

Using the config values within the same app.config

Is there any way to use a config value within the same app.config file itself? Something like this: <?xml version="1.0"?> <configuration> <appSettings> <add ...
2
votes
1answer
418 views

app.config configuration management - C#, .net

I am currently looking at ways to manage app.config files. I currently have multiple version of same software running in different environments, where each software use specific version of app.config ...
1
vote
3answers
394 views

How to write an URI string in App.Config

I am making a Windows Service. The Service has to donwload something every night, and therefor I want to place the URI in the App.Config in case I later need to change it. I want to write an URI in ...
0
votes
1answer
142 views

Change the Default AppConfig at runtime with custom config sections

I essentially am in charge of a DLL for my project that uses lots of external resources. I want to have a config file for my project named infrastructure.config that clients projects can copy in ...
2
votes
1answer
154 views

Where to store an application-scoped setting that can be modified at runtime? [duplicate]

Possible Duplicate: How do I get around application scope settings being read-only? I have a c# WinForms app that needs to store an application-scoped setting that can also be edited and ...
0
votes
0answers
107 views

Problems with manually reading app.settings in c# lib

I have problems with manually reading application settings in c# lib. I have to retrieve LDAPUser from appsettings section of dll app.config Attached herewith the code sample: ...
1
vote
1answer
84 views

Equivalent WCF config needed for these program lines

I am struggling at the moment to come up with the right config for a Web Service client build via WCF / Service Reference. I was able to create the binding and configure the endpoint programmatically, ...
2
votes
2answers
635 views

how to deal with configuration file in CakePHP

I know that in folder config are file called core.php which I can configure application options as a debug mode, session, cache etc. But I want do configure file for my application. I want for ...
1
vote
6answers
505 views

error storing < and > characters in app.config file in C#

I want to store a sql query in app.config file which has < and > characters but file shows error 'expecting >' , have you come across this problem ?
0
votes
0answers
105 views

Visual Studio : How to switch between test / production databases quickly?

I'm working in a solution which includes a windows service host project that uses a single app.config file which contains everything the service needs (logging configuration, WCF configuration, custom ...
0
votes
2answers
68 views

Custom Configuration in .NET - Use element instead of attributes

In all examples I've seen of custom configurations nobody seems to use elements to store data, e.g. <data name="1"> <server>aServer</server> <ip>anipaddress</ip> ...
0
votes
2answers
586 views

how to use AppSettings of app.config in itself

I have a wcf config in client side. I need use a key in AppSettings by ServerIP Name for other sections in App.Config instead of localhost, Because count of my endpoints is many and my server ip is ...
1
vote
1answer
229 views

EntLib 5.0: Merging runtime-created section config with system config

I am using the EntLib in an environment where database connection strings are retrieved from a separate library call that decrypts a proprietary config file. I have no say over this practice or the ...
0
votes
2answers
859 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: ...
3
votes
2answers
250 views

Azure role configuration management

I don't see how Windows Azure lets you vary the configuration of an application when you have no choice but to hold configuration settings in web.config (or app.config). For example... Quite often ...
2
votes
1answer
99 views

How to change the default lenguage of Komparator

I downloaded Komparator4 source from this page. I installed it but there is no option to change the language (the default is English). There is one folder in the package source with 6 idioms ...

1 2 3 4 5