Tagged Questions
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, ...
1
vote
2answers
80 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
2answers
490 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
2answers
53 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
2answers
73 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
2answers
222 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
468 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 ...