In the .Net framework, ConfigurationManager is a built-in object that provides access to configuration files.
0
votes
1answer
21 views
How to read endpoint configuration from another app.config file
I need to use a ServiceReference object in an plugin I’m writing. However, this plugin has its own app.config file separate from the parent program’s config file. I know how to access this secondary ...
1
vote
2answers
32 views
Using ConfigurationManager in web apps
As far as I understand, I should use System.Configuration.ConfigurationManager to read app settings in desktop applications, and System.Web.Configuration.WebConfigurationManager to do the same thing ...
0
votes
1answer
17 views
Website is already referencing the assembly System.Configuration
I am trying to add System.Configuration as a reference but get the message
Website is already referencing the assembly System.Configuration
I aneed this however to access ConfigurationManager.
...
0
votes
0answers
26 views
Strange behavior while creating custom configuration for a Windows forms application
I am creating a custom configuration section.
App.config below.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="imageConfig" ...
-1
votes
0answers
127 views
SCCM 2012 configuration manager client package [closed]
I have installed SCCM 2012 and everything is working just fine. The server has deployed configuration manager to all computers on the network. when i deploy a new computer image though SCCM it does ...
0
votes
1answer
27 views
Determine host type ( selfhost vs iis ) for a wcf service exposing basichttp binding
There is a service , exposing one endpoint as basic http binding.
I have two types of hosting ( selfhost for test ,iis for production)
I am using configurationmanager which has to read a service ...
0
votes
0answers
70 views
Modify [appname].exe.config
After EXTENSIVELY researching the ConfigurationManager class, I've decided to just create/read/write to my own file for the single (there will never be more than one option - the task is very ...
0
votes
2answers
47 views
Store same key in Machine.config and App.config
I'm holding a custom configuration section in machine.config of following structure:
<CustomSettings>
<add key="testkey" local="localkey1" dev="devkey" prod="prodkey"/>
...
0
votes
0answers
28 views
Auto Update my WPF application using System Center 2012 Configuration Manager
Has anyone used System Center 2012 Configuration Manager for implementing version Auto Update functionality into your .NET application? Is it easy to use?
I've looked into clickonce as well but it ...
1
vote
0answers
25 views
iterate over a “custom” section in web.config
I am creating a verification page so that as my app moves from dev->qa->prod I can verify that all of the settings have been changed in web.config.
Looping over the connection strings and app ...
0
votes
3answers
69 views
Null return from C# application settings file
I am attempting to use this code:
String MainDB = ConfigurationManager.AppSettings["MainDB"];
MessageBox.Show(MainDB);
String MailInfo = ConfigurationManager.AppSettings["MailInfo"];
...
0
votes
1answer
87 views
Cloning a generic ConfigurationSection without a custom class
I'm trying to make a copy of a ConfigurationSection from an external app.config file's configuration with the end-goal of merging it into the executing application's currently-loaded configuration.
...
2
votes
1answer
98 views
ASP.NET MVC TDD (xUnit) - failing ConfigurationManager.AppSettings for no reason
I am trying to get familiar with TDD concept and wrote a first test that its "act" part looks like this:
repositoryStub = new Mock<IMyRepository>();
var sut = new ...
0
votes
2answers
60 views
ConfigurationManager in Referenced Assemblies
Using VS 2012 C# .net 4.0, I have a project which builds a console application using ConfigurationManager for config.
This all works very well.
I have a second project in the same solution which is ...
0
votes
0answers
57 views
Can I set a Value for ConfigurationManager.AppSettings?
I just want to know, can I set a value for ConfigurationManager.AppSettings?
Normally, I just control on Web.Config. Below is the example:
<add key="Apps" value="Apps://192.168.x.xxx:xxxx"/>
...
3
votes
2answers
62 views
How to use the ConfigurationManager to store structured data?
I can use the .Net ConfigurationManager to store strings, but how can I store structured data?
For example, I can do this:
conf = ConfigurationManager.OpenExeConfiguration(...)
string s = "myval";
...
6
votes
2answers
139 views
How can I retrieve list of custom configuration sections in the .config file using C#? [duplicate]
When I try to retrieve the list of sections in the .config file using
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
the config.Sections collection ...
0
votes
1answer
121 views
How to programaticaly add domain service end point to web.config
First of all I wanted to thank everyone in StackOverflow for the continuous contributions to the community.
On that note, I am in need of help with manipulating the web.config of a site ...
0
votes
0answers
89 views
add app settings in ConfigurationManager without saving
I am picking my application settings from database.
I want to add these setting to my application at runtime. I do not want to use config file because i do not want that anyone can see my settings.
...
0
votes
0answers
32 views
Which property of the ConfigurationElement class maps to the <element>text between</element>?
Which property of the System.Configuration.ConfigurationElement class will get me the text inside the element tags?
<hello>
<youAlright
comeOnSpitItOut = "I know how to get ...
0
votes
0answers
72 views
Asp.Net Webservices - Picking the right configuration at runtime (no editing)
QUESTION: Is there a way dynamically change configuration, or pick the right configuration of a web service (values in web.config), depending on an input field's value?
[PLEASE READ DESCRIPTION to ...
0
votes
0answers
165 views
how to make 2 report server (ssrs 2005 and 2008) on same machine? How to aviod error “invalid class”?
I have installed SSRS 2005 and 2008 on a machine. I am able to use configuartion manager for SSRS 2005 but when i try to use configuartion manager for SSRS 2008 I get in below error.
SSRS service ...
0
votes
1answer
48 views
The mailSettings attributes are all returning <Null>
Problem
When grabbing the _mailSettings.Smtp.Network.Host, even though it's in the application configuration file, it's returning null.
Code
First and foremost, because the project is just a ...
0
votes
0answers
154 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
2answers
227 views
ConfigurationManager in System.Configuration.dll make exception
I am writing WCF service for silverlight application. In MainService I want to read information from config file. So I want to use ConfigurationManager. I added System.Configuration.dll to project ...
0
votes
1answer
100 views
ConfigurationManager.OpenExeConfiguration equivalent for FW 3.5 and 4.0?
I'm trying to get the LocalAppData default folder for my program
But this only works for FrameWork 4.5:
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoaming).FilePath
I ...
3
votes
3answers
593 views
How to read system value from web.config and use in ASP.NET MVC C# method
I'm working on a ASP.NET MVC3 web application (not written by me) which has a max upload size of 100MB. Now this web application gets installed on server machines for customers so it would be nice if ...
0
votes
4answers
300 views
Read config file from asp.net
I'm creating a web application, which calls a DLL to run unit tests, I also have another DLL(DataAccessLayer) which performs connections and performs queries to SQL which references the main DLL. Both ...
1
vote
1answer
74 views
ConfigurationManager.Read reading from unknown source
I inherited a bit of legacy code that was originally written in VS .NET 2003. I'm familiar with how ConfigurationManager works in newer versions of .NET, and have used it successfully to grab ...
0
votes
0answers
301 views
Visual Studio will not give me the platform option of 64 bit in configuration manager..?
I am currently trying to build a project for a 64 bit computer, but the configuration manager doesn't list 64 bit as an option. It gives me Win32, but no x64 (under "Platform"). I am using Visual ...
0
votes
0answers
70 views
Load configuration from an external .config file exception
i have the following class inheriting from ConfigurationSection
public class ExceptionsConfiguration:ConfigurationSection
{
private static ExceptionsConfiguration _exceptionsconfig = ...
0
votes
1answer
1k views
How to modify ConnectionString in app.config file from VB.NET windows application?
I want to change the connection string of my application written in app.config file. I like to make changes in the connection string directly from my application.
My app.config looks like:
<?xml ...
0
votes
1answer
106 views
windows service project The type or namespace name 'ConfigurationManager' does not exist in the namespace 'System.Configuration'
I'm coding a Windows Service.
I added the dll and namespace as shown below .
using System.Configuration;
//This line cause error but why ?
var settings = ...
1
vote
2answers
89 views
Instantiate a System.Type from a type definition string
In the web.config file, we see a lot of strings following this pattern:
type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,
System.Web.WebPages.Razor, Version=2.0.0.0, ...
1
vote
1answer
49 views
Is it a good idea to set build/ debug configurations to run over “Any CPU” rather than x86 only?
A solution containing my MVC application is having nearly 20 different projects (one of them is MVC, few are WCF service applications, and the rest are class libraries.
They all work, and gets build ...
0
votes
1answer
251 views
How do I get the values from a ConfigSection defined as NameValueSectionHandler when using ConfigurationManager.OpenMappedExeConfiguration
Getting the values from a config file that uses a section defined by System.Configuration.NameValueSectionHandler is easy when you're using the current config file for the application.
Example Config ...
2
votes
3answers
375 views
VS project Settings is building a .config file with no <appSettings> or <add> elements
I started adding settings to my C# project in VS2010, by adding rows in the Project -> Properties -> Settings tab. A Settings.settings file (with Settings.Designer.cs file) was automatically ...
0
votes
1answer
40 views
ConfigurationManager adds unexpected itens to system.web section
I'm modifying the connection string on the Web.config file during a web installer custom action.
This is the code snippet that is doing the job
ExeConfigurationFileMap map = new ...
0
votes
0answers
44 views
How to remove <clear /> line from web.config programmatically
I am modifying a web.config file programatically with ConfigurationManager.
I have something like this, and I'd like to remove the <clear />:
<system.web>
<profile />
...
1
vote
0answers
300 views
ansible include_if_exists
I'm looking for a way to conditionally include a file in an Ansible play, if the file exists. Using "include" unfortunately throws a fatal error if the file doesn't exist. I'm looping through a bunch ...
0
votes
0answers
79 views
Using ConfigurationManager cannot read custom section in web.config
I have a web.config that I can successfully read the connectionstrings and appsettings sections through the configuration object by loading it with configurationmanager.
I use ExeConfigurationFileMap ...
0
votes
1answer
133 views
WebConfigurationManager reading/writing location path=xx
my web.config contains sections like
location -- system.web -- authorization -- allow
<location path="ClientDisabled.aspx">
<system.web>
<authorization>
...
-1
votes
1answer
585 views
c# App config settings windows 8 - access to tmp file denied
This question was originally posted as "Error occurred loading a configuration file: Access to path c:\Program Files (x86)\… denied", but I didn't have much success finding a solution.
My application ...
0
votes
1answer
221 views
How to load and merge 2 web.config files in the same folder programmatically?
I have an asp.net application with one web.config in the root.
I'd like to have another web.config in the root e.g. custom.web.config.
The web.config one is generated by an external tool and I can't ...
6
votes
3answers
2k views
Does ConfigurationManager.AppSettings[Key] read from the web.config file each time?
I'm just wondering how the ConfigurationManager.AppSettings[Key] works?
Does it read from the physical file each time I need a key?
If so, should I be reading all the app settings of my web.config ...
0
votes
1answer
112 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
1k views
Can't get my custom configuration section
I am trying to create a custom config section to load the list of 'ovens' my application monitors. This is my first experience with config sections and I have tried to follow the examples; but, I ...
-3
votes
3answers
139 views
Is there an option to read the web.config key value from aspx?
Checking there are any option to read the config values directly from aspx page (I know how to read using codebehind).
0
votes
0answers
73 views
XML is overwritten after saving it with Configuration and LINQ-to-XML?
I am opening up an XML file using LINQ-to-XML, but before this I am using OpenMappedExeConfiguration to get the ConnectionStringsSection from the config file:
SqlConnectionStringBuilder builder = new ...
2
votes
2answers
441 views
Read AppSettings from MEF plugin
I would like to access the values in the ConfigurationManager.AppSettings object from a MEF plugin which has its own app.config file.
However, the keys from the app.config file are not present in ...

