我有一个用 c# WPF 编写的软件。在文件 app.config 我有这个部分:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IXXXCustomer" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxBufferSize="400000" maxReceivedMessageSize="400000"
textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"
messageEncoding="Text">
<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://update.xxx.com/xxxCustomer.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IxxxCustomer" contract="xxxService.IxxxCustomer" name="BasicHttpBinding_IxxxCustomer"/>
</client>
</system.serviceModel>
我需要 maxBufferSize 和 maxReceivedMessageSize 改变它们的值。为此,我手动编辑文件并在调试中一切正常。
当我在已经安装了我的应用程序的 pc 客户端上发布软件时,我不知道如何更改包含这些值的 softwarename.exe.config 文件。
有谁知道该怎么做?
先谢谢了。