Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Clients.Hive/3.3/app.config @ 4629

Last change on this file since 4629 was 4629, checked in by cneumuel, 13 years ago
  • worked on new hive structure
  • created IIS hostable website for hive (old structure)

(#1233)

File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3    <system.serviceModel>
4        <bindings>
5            <netTcpBinding>
6                <binding name="TcpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00"
7                    receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false"
8                    transferMode="Streamed" transactionProtocol="OleTransactions"
9                    hostNameComparisonMode="StrongWildcard" listenBacklog="10"
10                    maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
11                    maxReceivedMessageSize="65536">
12                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
13                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
14                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
15                        enabled="false" />
16                    <security mode="TransportWithMessageCredential">
17                        <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
18                        <message clientCredentialType="UserName" algorithmSuite="Default" />
19                    </security>
20                </binding>
21            </netTcpBinding>
22        </bindings>
23        <client>
24            <endpoint address="net.tcp://localhost:9000/HiveService" binding="netTcpBinding"
25                bindingConfiguration="TcpEndpoint" contract="HeuristicLab.Services.Hive.Common.ServiceContracts.IHiveService"
26                name="TcpEndpoint">
27                <identity>
28                    <dns value="localhost" />
29                </identity>
30            </endpoint>
31        </client>
32    </system.serviceModel>
33</configuration>
Note: See TracBrowser for help on using the repository browser.