开发上的 Web.config 调用另一个远程开发服务器上的 Web 服务,因此绑定看起来像这样
<binding name="XXXSoap12">
<httpsTransport manualAddressing="false" maxBufferPoolSize="524288"
maxReceivedMessageSize="1048576" allowCookies="false"
authenticationScheme="Anonymous"
bypassProxyOnLocal="false" decompressionEnabled="true"
hostNameComparisonMode="StrongWildcard"
keepAliveEnabled="true" maxBufferSize="1048576"
proxyAuthenticationScheme="Anonymous"
realm="" transferMode="Buffered"
unsafeConnectionNtlmAuthentication="false"
useDefaultWebProxy="true" />
</binding>
我想将httpTransport
协议/标签更改httpsTransport
为 QA、STG 和 PROD 的协议。
我如何为此编写转换。