programmatically create/edit the WCF section in the configuration file

971 Views Asked by At

How can I programmatically create/edit the WCF section in the configuration file? I know how to read. But when you try to change the configuration, get the error:

string pathToProg = @ "C: \ Proj \ WCF_Config \ ConsoleApplication1 \ bin \ Debug \Test.config";
ExeConfigurationFileMap configFileMap = new ExeConfigurationFileMap();
configFileMap.ExeConfigFilename = pathToProg;

Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configFileMap, ConfigurationUserLevel.None);
ClientSection clientSection = ConfigurationManager.GetSection("system.serviceModel/client") as ClientSection;           

// Exception: "The configuration is read only."
clientSection.Endpoints.Add(new ChannelEndpointElement(new EndpointAddress(@"http://1.1.1.1:1/HL7"), "Server.Message"));

               My ultimate goal - to programmatically create from scratch (and edit), the configuration file with settings WCF. If you know how this is solved, please tell me. This is necessary for our maintenance department, because they find it difficult to edit the config file directly (Ip, bindings etc).

UPD. Now specifically removed the entire directory checkbox " read-only " .

Nothing has changed.

You can perform at this code ? It's easy - you just have to in the configuration file section was " system.servismodel " with relevant data.

PS . I think the problem in this : ClientSection clientSection = ConfigurationManager.GetSection ("system.serviceModel / client") as ClientSection; clientSection.Endpoints.IsReadOnly - returns true .

An opportunity my decision is fundamentally wrong . The collection is not editable in principle.

How to correct? I hope someone already faced with the need to create a programmatically configuration file.

2

There are 2 best solutions below

0
On

You could try this guide - Writing WCF config files programmatically and dynamically. It appears to be exactly what you are looking for.

1
On

To obtain the Configuration object for a resource, your code must have read permissions on all the configuration files from which it inherits settings. To update a configuration file, your code must additionally have write permissions for both the configuration file and the directory in which it exists.

http://msdn.microsoft.com/en-us/library/ms134269(v=vs.110).aspx

Do you have read/write access to the config file and the directory that contains it?