Last change
on this file since 5232 was
5232,
checked in by cneumuel, 14 years ago
|
#1260
- added cancellation to HiveEngine
- made HiveEngine more failproof for flaky connection to hive server
- increased WCF message quotas to 300MB
|
File size:
3.5 KB
|
Line | |
---|
1 | <?xml version="1.0"?>
|
---|
2 | <configuration>
|
---|
3 | <configSections>
|
---|
4 | </configSections>
|
---|
5 | <system.serviceModel>
|
---|
6 | <bindings>
|
---|
7 | <netTcpBinding>
|
---|
8 | <binding name="SlaveTcpStreamedEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false" transferMode="Streamed" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="314572800">
|
---|
9 | <readerQuotas maxDepth="32" maxStringContentLength="314572800" maxArrayLength="314572800" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
|
---|
10 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
|
---|
11 | <security mode="TransportWithMessageCredential">
|
---|
12 | <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign"/>
|
---|
13 | <message clientCredentialType="UserName" algorithmSuite="Default"/>
|
---|
14 | </security>
|
---|
15 | </binding>
|
---|
16 | </netTcpBinding>
|
---|
17 | <wsHttpBinding>
|
---|
18 | <binding name="SlaveHttpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="314572800" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
19 | <readerQuotas maxDepth="32" maxStringContentLength="314572800" maxArrayLength="314572800" maxBytesPerRead="314572800" maxNameTableCharCount="314572800"/>
|
---|
20 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
|
---|
21 | <security mode="Message">
|
---|
22 | <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
|
---|
23 | <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
|
---|
24 | </security>
|
---|
25 | </binding>
|
---|
26 | </wsHttpBinding>
|
---|
27 | </bindings>
|
---|
28 | <client>
|
---|
29 | <endpoint address="http://localhost:9000/Hive/SlaveService.svc" binding="wsHttpBinding" bindingConfiguration="SlaveHttpEndpoint" contract="SlaveFacade.ISlaveFacade" name="SlaveHttpEndpoint">
|
---|
30 | <identity>
|
---|
31 | <certificate encodedValue="AwAAAAEAAAAUAAAAfEKvcVixnJay+q4hCPFuO0JL5TQgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhCNN5wrUcXMmE/9xwp4TYa9MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMTAxOTEwNTMxNVoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDXwC5TGcAffd/0oAWHtm0s6YXVXEgXgb1AYmBkkkhkKIFJG/e/Z0KSYbJepmSJD44W3oOAVm+x1DAsZxU79HahDYgWCuHLMm1TLpwSmYOQ0kV3pGHWHhiWV7h7oGLds/eqZ2EOpaNGryfEPnrA4VmxY91vV5/2BTeVSWG6F8lRKQIDAQABo0kwRzBFBgNVHQEEPjA8gBAR7kBnMRHO5gzThEqda0wWoRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghCNN5wrUcXMmE/9xwp4TYa9MAkGBSsOAwIdBQADgYEAoPwEG4QTDXhlxERNDfsZmM2IhEpV42ppz1kEah2oYKDa/ElIMVtvqLv6flVtg18ENN/mEJWiHZ3NyP3qr2Pip+sh+/2WBiSbOaukES/CM7OJn9kJCImH7M/xqM8pxqY8IfgM6iBVrVj9uHqj3j2BBck+cYY8fKyh3CFifMIp6ac=" />
|
---|
32 | </identity>
|
---|
33 | </endpoint>
|
---|
34 | <endpoint address="net.tcp://localhost:9001/Hive/SlaveService.svc" binding="netTcpBinding" bindingConfiguration="SlaveTcpStreamedEndpoint" contract="SlaveFacade.ISlaveFacade" name="SlaveTcpStreamedEndpoint">
|
---|
35 | <identity>
|
---|
36 | <dns value="localhost"/>
|
---|
37 | </identity>
|
---|
38 | </endpoint>
|
---|
39 | </client>
|
---|
40 | </system.serviceModel>
|
---|
41 | <startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
|
---|
Note: See
TracBrowser
for help on using the repository browser.