vote up 0 vote down star

I am writing an client application in C# which will be supposed to change ConnectionString settings in a web.config file from another application I wrote. How can I achieve this goal?

Is there a way to load the web.config file in my application and read/change its data object orientated? Or do I need to parse it as if beeing a complete 'unknown' XML file?

flag

74% accept rate

2 Answers

vote up 2 vote down check

If you're doing this from another application, you can use the VirtualDirectoryMapping class:

VirtualDirectoryMapping vdm = new VirtualDirectoryMapping(@"C:\Inetpub\wwwroot\YourApplication", true);
WebConfigurationFileMap wcfm = new WebConfigurationFileMap();
wcfm.VirtualDirectories.Add("/", vdm);


// Get the connectionString
Configuration config = WebConfigurationManager.OpenMappedWebConfiguration(wcfm, "/");
string connection = config.ConnectionStrings.ConnectionStrings["YourConnectionString"];
link|flag
Works perfectly, thanks! – Marcus Feb 15 at 1:07
You're welcome Marcus – CMS Feb 15 at 16:07
vote up 0 vote down

I would use RMI to query the other application for the ConnectionString.

link|flag
I think you mean WMI :) – dotnetdev Feb 15 at 1:02
No, I meant RMI (Remote Method Invocation). I guess it's called .Net Remoting these days and now is lumped in with the whole WCF stack. – Scott Muc Feb 16 at 2:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.