Specifies configuration section and namespace declarations.

learn more… | top users | synonyms

0
votes
1answer
64 views

Powershell - how to add <sectionGroup> to web.config

I'm trying to add a sectionGroup element to the configuration/configSections element in a web.config using Powershell. I currently have $filePath = [path to my web.config file] # load the XML from ...
0
votes
0answers
26 views

Use one config section across multiple assemblies?

Is there a way to point one configuration section at multiple assemblies? Example: Lets say I have a configuration section such as: <MyCustomSection> <coreAssemblySection /> ...
0
votes
1answer
55 views

How can I dynamically provide command line arguments during VS 2012 C# debug sessions?

I am busy with a console application, being a CLI to an API class that provides top level public methods for a data integration process. During development, it is necessary for me to frequently change ...
0
votes
2answers
71 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"/> ...
6
votes
2answers
216 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 ...
2
votes
1answer
655 views

Could not find schema information for the element 'elmah'

I read all the answers already posted here but none seems to solve. Elmah is working flawlessly even if I got those warnings. Also I got those errors when I launch debug (f5) in visual studio 2012. On ...
0
votes
0answers
94 views

How to get same config section in two different assemblies

i have a web.config file in which i defined a config section like this <configSections> <sectionGroup name="ncContentOptimization"> <section name="settings" ...
2
votes
1answer
68 views

Custom config section with two differentt child collections

I'm having trouble finding/figuring out how to map the following custom config section: <section> <collection1> <subitem1 ... /> <subitem1 ... /> ...
0
votes
2answers
413 views

app/web config custom sections, collection elements with attributes

I thought this would be something simple to do, as I have an xml section like: <InterfaceDetails> <Interface name="TestInterface1"> <Details data="xxxxxx" /> ...
0
votes
1answer
717 views

How to change configSections, section, type element? Specifically Version

I'm posting my question here and to CodeProject, as a question to the famous article series on the mysteries of config files. From the article: Optionally, you may specify culture, version and ...
3
votes
1answer
990 views

How to read custom config section in app.config in c#

I want to read following custom section from app.config: <StartupFolders> <Folders name="a"> <add folderType="Inst" path="c:\foo" /> <add folderType="Prof" ...
0
votes
2answers
1k views

C# configSections “Sections must only appear once per config file.”

I want to create a "List" of clientUsers that contains many of clientUser <configuration> <configSections> <sectionGroup name="clientUsers"> ...
1
vote
1answer
847 views

app.settings custom configuration problem

I've attempted my first go round with a custom configuration in app.settings. When I try to call the config I get "Unrecognized configuration section servers". What am I doing wrong? <?xml ...
0
votes
1answer
782 views

.NET Console Application configSections

I have a shared class library which is being used by an asp.net web application and a console application. In the web.config of my web app, I have a sectionGroup within the configSections declared, ...
4
votes
3answers
9k views

Get value from web.config applicationSettings into ASP.NET markup

I might be completely off track by now, so I will just ask this here so someone can help me. What I want to do, is to insert a value from my web.config, stored in an applicationSettings area, into ...
1
vote
1answer
1k views

Problem Implementing custom configuration section handler

All I have put together a custom configuration section handler (vb.net), based on gleanings from a variety of sources (including stackOverlflow), however when I come to use it, I get the following ...
2
votes
3answers
757 views

What is the purpose of configSections?

I've done a little research and ran across this: http://msdn.microsoft.com/en-us/library/ms228245.aspx So if I'm understanding that correctly, ultimately what this is doing is including some .dlls ...
9
votes
1answer
10k views

log4net configuration exception

I am using log4net for logging. My logging configuration is stored in a separate file. Web.Config:ConfigSections <section name="log4net" ...
15
votes
3answers
18k views

Custom app.config Config Section Handler

What is the correct way to pick up the list of "pages" via a class that inherits from System.Configuration.Section if I used a app.config like this? <?xml version="1.0" encoding="utf-8" ?> ...
7
votes
3answers
30k views

C# ConfigurationManager.GetSection could not load file or assembly

I am stuck! this seems really daft but I can not see where I am going wrong. I am creating a 2.0 C# ASP.NET website. I am trying to use a custom section in the web.config file with: ...