Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
4k views

What's the difference between the WebConfigurationManager and the ConfigurationManager?

What's the difference between the WebConfigurationManager and the ConfigurationManager? When should I use one over the other? UPDATED I just looked at the WebConfigurationManager, and for some ...
6
votes
3answers
1k views

Loading a ConfigurationSection with a required child ConfigurationElement with .Net configuration framework

I have a console application that is trying to load a CustomConfigurationSection from a web.config file. The custom configuration section has a custom configuration element that is required. This ...
5
votes
1answer
2k views

How to OpenWebConfiguration with physical path?

I have a win form that creates a site in IIS7. One function needs to open the web.config file and make a few updates. (connection string, smtp, impersonation) However I do not have the virtual path, ...
5
votes
2answers
2k views

Can someone provide a quick App.config/Web.config tutorial?

I've used these two configuration files many times before, but I've never taken the time to fully understand how they really work. As most people do, I understand the basics in how to call ...
2
votes
2answers
4k views

Differences in behavior between System.Web.Configuration.WebConfigurationManager and System.Configuration.ConfigurationManager

I had some trouble on a test server with an ASP.NET website. I goofed, and had the home directory of the Default Web Site pointed to the wrong place. When I tried: ...
1
vote
1answer
51 views

.NET ConfigurationElementCollection.Add method does not add item to collection

I have a custom configuration section running under ASP.NET 4.0 that I would like to save changes to. The classes involved are: QueueConfiguration: a ConfigurationElement QueueCollection Queues // ...
1
vote
1answer
513 views

ASP.NET: HttpRuntime.Cache getting flushed when saving WebConfigurationManager — Is this a bug?

Recently, I've been experimenting with caching objects with HttpRuntime.Cache and I was generally under the impression that if I "added" something to the cache like this: ...
1
vote
2answers
79 views

How to retrieve on which site the web application is currently running?

I am currently running a WCF service on an AppFabric server and my application needs to load a the web.config file dynamically to retrieve custom configuration sections. On my development machine I ...
1
vote
1answer
95 views

WAP + NUnit + WebConfigurationManager Pin

I just started using NUnit to write test cases for my asp.net web application project. Some of the code written to access database values fetches the ConnectionString from a "section" defined under ...
1
vote
2answers
473 views

Trying to open a section from the web.config spans a ConfigurationErrorsException: The entry KEY has already been added

I'm trying to fetch some settings from my membership provider in my asp.net application (so that I don't have to duplicate the information in the appSettings section) but I am getting the following ...
0
votes
0answers
29 views

Using WebConfigurationManager.OpenWebConfiguration with local IIS7

A long while ago I created a C# .net web page that accepts some input for site name, server name etc. which is used to encrypt sections of a web.config in the target site. The live sites are hosted ...
0
votes
2answers
42 views

Manipulating web.config in memory

I have a web.config file open in a textbox and would like to manipulate it. For example, allowing the user to change the DBConn string or something. At the stage of trying to change this, the config ...
0
votes
0answers
18 views

get configuration object from url

Is there a way to get the Configuration object out of the web context? This is a Sharepoint custom timer job (so I can't use HttpContext, Request, etc).. I have the url of my web, and I want to ...
0
votes
2answers
72 views

Prevent config files error to render in browser

I have a custom config file in my application say my.config. Suddenly I ecnountered with some error regarding one of the settings inside the config file and the strange thing happens- my content of ...
0
votes
1answer
215 views

Extracting contents of ConnectionStrings in web.config in Silverlight Business application

I am trying to read dataSource ad Catalog from <connectionStrings> in web.config in Silverlight business project. Unfortunately when I used SqlConnectionStringBuilder, I could not read ...
0
votes
2answers
85 views

how can i use same web.config file for two web appliction?

I have two web application. Their folder hierarchy in server is like that. first one is : .../firstapplitaion second is : .../firstapplication/secondapplication/Default.aspx At first can i run them ...
0
votes
2answers
208 views

WebConfigurationManager error after adding siteMap

Hello I'm getting this error: Compiler Error Message: CS0118: 'Configuration' is a 'namespace' but is used like a 'type' Configuration myWebConfig = ...
0
votes
1answer
2k views

Using the WebConfigurationManager.OpenWebConfiguration() function using remote server and port?

Can someone tell me if there is a way for me to use the WebConfigurationManager.OpenWebConfiguration() using a remote server, port and virtual directory? Examples cited in ...
0
votes
1answer
459 views

Problems attempting to read web.config from a Windows application

I'm writing a WPF application to help non-XML-savvy customers set up configuration files on a web server. web.config is one of these files. I have custom sections defined, but I've commented them ...