首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

修改XML文件的有关问题

2012-01-19 
修改XML文件的问题XML code?xml version1.0 encodingutf-8?configurationsystem.diagnostics

修改XML文件的问题

XML code
<?xml version="1.0" encoding="utf-8"?><configuration>  <system.diagnostics>    <sources>      <!-- 本节定义 My.Application.Log 的登录配置-->      <source name="DefaultSource" switchName="DefaultSwitch">        <listeners>          <add name="FileLog" />          <!-- 取消注释以下一节可写入应用程序事件日志-->          <!--<add name="EventLog"/>-->        </listeners>      </source>    </sources>    <switches>      <add name="DefaultSwitch" value="Information" />    </switches>    <sharedListeners>      <add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter" />      <!-- 取消注释以下一节并用应用程序名替换 APPLICATION_NAME 可写入应用程序事件日志-->      <!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->    </sharedListeners>  </system.diagnostics>  <system.serviceModel>    <bindings>      <basicHttpBinding>        <binding name="BasicHttpBinding_IFirstService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />          <security mode="None">            <transport clientCredentialType="None" proxyCredentialType="None" realm="" />            <message clientCredentialType="UserName" algorithmSuite="Default" />          </security>        </binding>      </basicHttpBinding>    </bindings>    <client>      <endpoint address="http://localhost:8000/" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IFirstService" contract="ServiceReference1.IFirstService" name="BasicHttpBinding_IFirstService" />    </client>  </system.serviceModel></configuration>


以上是我的XML文件内容,我想修改里面的"http://localhost:8000/",本人才学习这个,请说的细点,谢谢!

[解决办法]
参考
MSDN
[解决办法]
如果利用 .NET 自带的Config类去读取和修改就比较简单,当然直接读取用XmlDocument,或者Linq2Xml也都是可以解决的。

var conf = ConfigurationManager.OpenExeConfiguration(Assembly.GetEntryAssembly().Location);
var svcConf = (ServiceModelSectionGroup)conf.GetSectionGroup("system.serviceModel");

热点排行