C#更新app.config元素

时间:2012-09-27 07:03:15

标签: c# wcf app-config

我有一个WCF服务器,它有以下app.config文件:

<?xml version="1.0"?>
<configuration>   
  <system.serviceModel>   
    <services>
      <service name="MyService" behaviorConfiguration="DiscoveryBehavior">       
        <endpoint address="net.tcp://192.168.150.130:44424/ServerService/"/>        
        <endpoint name="udpDiscovery" kind="udpDiscoveryEndpoint"/>
      </service>
    </services>
  </system.serviceModel> 
</configuration>

在另一台机器上安装时,我想让它自动更新该机器地址的地址。我有字符串,但我不明白如何更新&#34;地址&#34; app.config文件中的项目。我有以下代码,但这不起作用:

var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); 
config.AppSettings.Settings["address"].Value = "new_value";
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings"); 

我想它不起作用,因为我没有名为&#34; appSettings&#34;的部分,但是如何访问&#34;地址&#34;项目?我尝试了不同的解决方案,但没有任何效果。

提前谢谢。

2 个答案:

答案 0 :(得分:1)

我找到了一个有效的解决方案。读取内存中的整个文件,找到节点,替换该值,然后覆盖该文件。在我的程序初始化之前,在OnStartup方法上调用它。

XmlDocument doc = new XmlDocument();
doc.Load("MyApp.exe.config");
XmlNodeList endpoints = doc.GetElementsByTagName("endpoint");
foreach (XmlNode item in endpoints)
{
    var adressAttribute = item.Attributes["address"];
    if (!ReferenceEquals(null, adressAttribute))
    {
        adressAttribute.Value = string.Format("net.tcp://{0}:44424/ServerService/", MachineIp);
    }
}
doc.Save("MyApp.exe.config");

答案 1 :(得分:0)

我通常会删除密钥并将其添加回来以确保:

Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
        config.AppSettings.Settings.Remove("address");
        config.AppSettings.Settings.Add("address", "new_value");
        config.Save(ConfigurationSaveMode.Modified);
        ConfigurationManager.RefreshSection("appSettings");