| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <system.serviceModel>
- <behaviors>
- <endpointBehaviors>
- <behavior name="endpointBehavior_DKIBOSSPRDService">
- </behavior>
- </endpointBehaviors>
- </behaviors>
- <bindings>
- <wsHttpBinding>
- <binding name="wsHttpBinding_DKIBOSSPRDService" closeTimeout="00:10:00"
- openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"
- bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
- maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
- messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
- allowCookies="false">
- <readerQuotas maxDepth="32" maxStringContentLength="2147483647"
- maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
- <reliableSession ordered="true" inactivityTimeout="00:10:00"
- enabled="false" />
- <security mode="None">
- <transport clientCredentialType="Windows" proxyCredentialType="None"
- realm="" />
- <message clientCredentialType="Windows" negotiateServiceCredential="true"
- establishSecurityContext="true" />
- </security>
- </binding>
- <binding name="WSHttpBinding_IDKIBOSSPRD">
- <security mode="None" />
- </binding>
- </wsHttpBinding>
- </bindings>
- <client>
- <endpoint address="" behaviorConfiguration="endpointBehavior_DKIBOSSPRDService"
- binding="wsHttpBinding" bindingConfiguration="wsHttpBinding_DKIBOSSPRDService"
- contract="DKIBOSSPRDService.IDKIBOSSPRD" name="DKIBOSSPRDService" />
- <endpoint address="" behaviorConfiguration="endpointBehavior_DKIBOSSPRDService"
- binding="wsHttpBinding" bindingConfiguration="wsHttpBinding_DKIBOSSPRDService"
- contract="PublicModuleService.IPublicModule" name="PublicModuleService" />
- <endpoint address="http://127.0.0.1:1234/DKService/DKIBOSSPRDService"
- binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IDKIBOSSPRD"
- contract="DKIBOSSPRDService.IDKIBOSSPRD" name="WSHttpBinding_IDKIBOSSPRD" />
- </client>
- </system.serviceModel>
- </configuration>
|