Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Console/3.3/app.config @ 4760

Last change on this file since 4760 was 4710, checked in by cneumuel, 14 years ago

#1254

  • enabled full IIS7 compatibility
  • removed dependency to HeuristicLab.Tracing
  • changed server-side logging to wcf-tracing (needs to be enhanced to trace job-lifecycle)
File size: 2.0 KB
Line 
1<?xml version="1.0"?>
2<configuration>
3  <configSections>
4    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5      <section name="HeuristicLab.Hive.Slave.Console.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
6    </sectionGroup>
7  </configSections>
8  <userSettings>
9    <HeuristicLab.Hive.Slave.Console.Properties.Settings>
10      <setting name="IpAdress" serializeAs="String">
11        <value>10.0.0.1</value>
12      </setting>
13    </HeuristicLab.Hive.Slave.Console.Properties.Settings>
14  </userSettings>
15  <system.serviceModel>
16    <bindings>
17      <netTcpBinding>
18        <binding name="SlaveConsoleTcpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxBufferSize="65536" maxReceivedMessageSize="65536">
19          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
20          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
21          <security mode="None">
22            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign"/>
23            <message clientCredentialType="Windows"/>
24          </security>
25        </binding>
26      </netTcpBinding>
27    </bindings>
28    <client>
29      <endpoint address="net.tcp://localhost:8000/SlaveConsoleService" binding="netTcpBinding" bindingConfiguration="SlaveConsoleTcpEndpoint" contract="SlaveConsoleService.ISlaveConsoleCommunicator" name="SlaveConsoleTcpEndpoint"/>
30    </client>
31  </system.serviceModel>
32<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
Note: See TracBrowser for help on using the repository browser.