天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
2.8 KiB

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IGeneralService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" maxBufferPoolSize="524288"
maxReceivedMessageSize="65536" useDefaultWebProxy="true" />
<binding name="BasicHttpBinding_ILoginService" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647" />
</basicHttpBinding>
<netTcpBinding>
<binding name="NetTcpBinding_ITaskService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard" listenBacklog="10"
maxBufferPoolSize="2147483647" maxBufferSize="2147483647"
maxConnections="10" maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="32" maxStringContentLength="9097152"
maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="None">
<transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
<message clientCredentialType="Windows" />
</security>
</binding>
</netTcpBinding>
</bindings>
<client>
<endpoint address="net.tcp://localhost:8732/QMTask.Core/TaskService/"
binding="netTcpBinding" bindingConfiguration="NetTcpBinding_ITaskService"
contract="TaskService.ITaskService" name="NetTcpBinding_ITaskService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="http://localhost:8938/LoginService.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_ILoginService" contract="LoginService.ILoginService"
name="BasicHttpBinding_ILoginService" />
<endpoint address="http://localhost:8938/GeneralService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IGeneralService"
contract="CenterGeneralService.IGeneralService" name="BasicHttpBinding_IGeneralService" />
</client>
</system.serviceModel>
</configuration>