Tagged Questions
0
votes
1answer
13 views
How to store complex configuration information for a .Net/ASP.Net application on .Net 4.5
I am looking for a simple and elegant means to store settings for my application. Here is an example that closely depicts that I am looking for
public class Office
{
string location;
int ...
1
vote
3answers
118 views
Reading connection string from external config file
I have created a console application and a App.config file and Connections.config file.
App.config file will connectionstring property source pointing to Connections.config.
When I tried to read the ...
1
vote
1answer
47 views
ClickOnce Deployment for two projects each has its own configuration file
I am using VS 2010 SP1.
I have two projects:
POS (WPF application)
Sync (Console application)
Lib (Class libray)
I added the Sync and lib assembly as a reference to the POS project. In runtime, ...
0
votes
2answers
17 views
Default location for configuration files - MacOS?
In a cross-platform application, I am working with a configuration file that allows the user to override various defaults if he wishes to.
The problem I have is... where to place / look for this ...
0
votes
0answers
152 views
How to make the application read keys from app.config file of class library dynamically
My requirement is as follows.
1)I want to use the application settings to read a location path and use it in my project to read the files in that folder.
--- I achieved this by creating a setting ...
0
votes
0answers
20 views
How to load environment-specific config into a WSGI based webapp?
I have a zope app (Grok-based actually) that has a zope.conf file which is used by some zope apps for paths etc on startup. I have similar info I need to pass (basically a bunch of strings) into my ...
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
99 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
...
0
votes
1answer
142 views
Impersonate settings in config for multiple databases
I have a console application which connects to two different SQL databases. I'm using the "impersonate" tag within the config file to force the application to login as "APP_USER". The APP_USER account ...
1
vote
0answers
82 views
How Enterprise Library loads hierarchy of external configuration files
Please, can someone clarify to me a loading process? Say, you have app.config file for your UI executable. You add Enterprise Library config sources in that file. Each config source refers to another ...
2
votes
2answers
84 views
Count the no of keys in appconfig in a class file
I need to know how to count the no of keys in app settings and manipulate through them in class file...
For example I'll have my app config as follows
<?xml version="1.0"?>
...
0
votes
1answer
337 views
Writable .config file for all users in application directory?
I need to have a common application settings file and i need it to be editable by the application at runtime.
I don't want to use the build in settings operation by putting "User" in settings scope ...
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 ...
0
votes
1answer
981 views
How to read values from multiple Configuration file in c# within a single project?
Here in my project I have two application configuration files called app.config and accessLevel.config. Now using the OpenExeConfiguration I was able to access the app.config.exe file but not the ...
0
votes
0answers
56 views
VS 2010 test project configuration from another file
Here's the run down. I have a solution that is a small piece of a much larger system. We share app settings through linked configuration files with a post build event to copy the file to the build ...
0
votes
1answer
101 views
Switching between config files in C#
Here I have two config files, I need to switch between these config files in C#
Example:
app.config
address.config
I need to change from app.config to address.config in runtime for fetching ...
0
votes
3answers
343 views
How to use a config file to connect to database set by user
I have a program that will run a query, and return results in report viewer. The issue is we have 10 locations, all with their own local database. What I'd like to do is have each location use the ...
-1
votes
1answer
65 views
How to handle two or more app configs?
Lets imagine I have three projects in my solution. The first one is executeble and the other two are class libraries.
Every project has it's own app.config file which contain some httpBinding data, ...
1
vote
6answers
512 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 ?
1
vote
1answer
58 views
is there a straightforward way for a c# application to read a config file with a user specified name and location
we have an application suite that consists of a half dozen services which processes data in a static folder hierarchy. the current rules for app.config files make managing this environment a ...
2
votes
0answers
181 views
How to modify configuration file for another C# assembly?
I have a .NET assembly A with app.config settings file generated by framework. Actually, it is called A.dll.config. I want to access and modify this settings file from another .NET assembly B. The ...
0
votes
0answers
68 views
Is it possible to load app.config file from arbitrary path?
I have created the App.config file:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="InetConnectionString" connectionString="Data ...
0
votes
5answers
231 views
How do I write to a non-standard config file?
I have a file called middle.config that is deployed in the same directory as an exe, but I need to update values in this file. That means that I have to go to C:\Program Files (x86)\ directory to ...
6
votes
1answer
174 views
Why do I sometimes have an app.config and other times a binaryname.dll.config file?
In .NET, after building a project, why do I sometimes have an app.config and other times a binaryname.dll.config file?
2
votes
1answer
164 views
.net cross-application configuration settings
How would I share configuration data between .net desktop apps? I have used a common .ini file before but now when transitioning into .net I wonder if that's the preferred way any longer? App.config ...
1
vote
5answers
277 views
Should I add a custom section to app.config? If so, how?
I have a program that periodically polls a certain folder for log files. When it finds a log file, it reads it, does whatever it has to, and moves on. The program that writes the log files keeps ...
0
votes
2answers
362 views
change a config value in tets project's app.config file
i'm trying to test some functionality which is dependant on a configuration value (if Settings["foo"] = true than return 5, otherwise- return -1).
So what I'm trying to do is to change the ...
0
votes
2answers
1k views
Dynamically creating App.config with connection string if App.config does not exists in Application-Data folder
I need to do my code the following task. I wrote some code as below, but I am getting error while setting connection string. Looks like it does not have set property.
Check if App.config is exists ...
0
votes
1answer
275 views
Machine config instead of app.config files for console apps
Is it possible to use connection strings in a Console app's app.config file in a single machine config file instead? So all console apps on the server can use the same file?
4
votes
1answer
599 views
Shared configuration between an .exe and a .dll
I'm trying to work with a settings.settings file in my project. There are values that need to be shared between the .exe file and various DLLs. I'd rather not just pass these values around, I'd like ...
2
votes
1answer
3k views
How can i update app.config connectionstring Datasource value in C#?
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
...
0
votes
2answers
231 views
Understanding .NET configuration file scheme
I have some difficulties with configuration files in .Net: I completely understand its essence and what are they good for, but the part I miss is this: configuration file is xml file that in runtime ...
4
votes
2answers
326 views
Does the order of elements in app.config matter?
I have seen and experienced problems with app.config/web.config where I had changed the order of elements and the app stopped working.
I believe I fixed the problem by looking at machine.config and ...
1
vote
4answers
538 views
can we edit visual studio app.config file in any text editor?
I have a configuration file in my visual studio application called app.config.
<add key="Duration" value="3"/><!-- i will edit value as 2 in this file-->
Up to now i edited in notepad ...
1
vote
1answer
5k views
Configuration System Failed To Initialize
In my application when I try to get the connection string by using this code :
System.Configuration.ConfigurationManager.ConnectionStrings["ConStr"].ConnectionString;
It throws an exception that ...
1
vote
1answer
397 views
Unity Interception Configuration - how to make less verbose?
To set up interception in Unity 2.0 you put something like this in your config (taken from Unity documentation)...
<policy name="addDataAccessTypes">
<matchingRule ...
4
votes
2answers
2k views
Change in application configuration without application restart
I have following issue: I'm introducing new feature into application (run as Windows Service) and I would like to have that new feature controlled (on/off) using some kind of configuration file entry ...
0
votes
1answer
550 views
What overwrites the <executble-name>.exe.config file with the original App.config at the end of debugging?
In Visual Studio 2010 what overwrites the <executable-name>.exe.config and replaces it with the App.config version of the file when debugging ends?
Is it Visual Studio doing that? Is there any ...
7
votes
4answers
2k views
Can I add conditions in app.config file?
Is it possible to add conditions in app.config file?
I do below in the C# code and I want to do something similar in my app.config file too.
#if (Debug)
.......
#else
.....
#endif
4
votes
3answers
589 views
Configuration Section Designer alternative
The project Configuration Section Designer http://csd.codeplex.com is such a great tool but now I've moved to VS2010 (forced actually) and it doesn't support 2010. I use this tool a great deal but now ...
2
votes
2answers
289 views
Change Microsoft Config File Encryption Method From TripleDES
When encrypting ("protecting") Microsoft config sections, you get something that looks like the XML below. It follows (at least partially) the W3 spec for XML Encryption.
However, in the XML below ...
2
votes
1answer
161 views
Is it possible to configure a .NET application to use a different config file without specifically adopting the source code to support such a need?
I have a .NET application. Its source code performs no config file manipulations. I am wondering whether there is a way to instruct the CLR to bind the app to another config file. A command line ...
4
votes
2answers
4k views
App.Config Custom configuration section problem
I've created a custom config section for my application. For some reason Visual Studio 2010 isn't picking up and of my custom properties. I'm getting warnings similar to this for all the "add" keys:
...
4
votes
5answers
3k views
Read connectionStrings element of your app.config
I am trying to read the connection strings from my app.config but it only shows me one connection string and that too isn't in my app.config.
Here's my code:
System.Diagnostics.Debugger.Break();
...
33
votes
3answers
21k views
How to implement a ConfigurationSection with a ConfigurationElementCollection
I am trying to implement a custom configuration section in a project and I keep running up against exceptions that I do not understand. I am hoping someone can fill in the blanks here.
I have ...
2
votes
1answer
1k views
Refresh/clear cache of app.config
I'm trying to get update values from app.config while it's running. I tried several methods but it still uses old values. How can I get correctly refresh it? I tried these but it didn't work:
...
0
votes
1answer
1k views
web.config overrides app.config…why?
I have two DLLs: one with a web.config, another one with app.config
I moved the connection strings from web.config to app.config so that it can be used by other DLLs.
Now, when I call ...
3
votes
2answers
481 views
Changing the config file in a Visual Studio Package
I'm building a Visual Studio Package and associated with it, I have an app.config file (which contains some information about connecting to a WCF service).
As far as I can tell, this package is ...
1
vote
1answer
398 views
Nesting Levels in Custom Section Handlers in .NET Configuration Files
I know I can have 1 parent element and 1 child element in my own custom app.config section like so:
<sectionGroup>
<section>
<element />
</section>
</sectionGroup>
...
0
votes
1answer
960 views
Code required to use foreach on my own custom appSettings
I've searched the site and haven't found exactly what I'm looking for. Close, but no cigar.
Basically I want to have a config section like this:
<configSections>
<section ...

