Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Core/3.3/app.config @ 5000

Last change on this file since 5000 was 5000, checked in by cneumuel, 13 years ago

#1260

  • custom configuration file is now deployed on slaves
  • made plugin distribution process more robust
  • fixed bug: slave assemblies are required in each sandbox appdomain
  • cleaned up some configuration elements in slave console client
  • fixed wrong path for locally persisted jobs
File size: 2.2 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.Core.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.Core.Properties.Settings>
10      <setting name="Guid" serializeAs="String">
11        <value>00000000-0000-0000-0000-000000000000</value>
12      </setting>
13    </HeuristicLab.Hive.Slave.Core.Properties.Settings>
14  </userSettings>
15 
16  <system.serviceModel>
17    <behaviors>
18      <serviceBehaviors>
19        <behavior name="SlaveConsoleServiceBehaviour">
20          <serviceMetadata/>
21        </behavior>
22      </serviceBehaviors>
23    </behaviors>
24   
25    <bindings>
26      <netTcpBinding>
27        <binding name="SlaveConsoleTcpBinding" maxReceivedMessageSize="104857600">
28          <readerQuotas maxArrayLength="104857600" maxBytesPerRead="104857600" maxStringContentLength="104857600"/>
29          <security mode="None">
30            <transport/>
31          </security>
32        </binding>
33      </netTcpBinding>
34    </bindings>
35   
36    <services>
37      <service behaviorConfiguration="SlaveConsoleServiceBehaviour" name="HeuristicLab.Hive.Slave.Core.SlaveConsoleService.SlaveConsoleCommunicator">
38        <endpoint binding="netTcpBinding" bindingConfiguration="SlaveConsoleTcpBinding" name="SlaveConsoleTcpEndpoint" contract="HeuristicLab.Hive.Slave.Core.SlaveConsoleService.Interfaces.ISlaveConsoleCommunicator" />
39        <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" name="SlaveConsoleTcpMexEndpoint" contract="IMetadataExchange"/>
40        <host>
41          <baseAddresses>
42            <add baseAddress="net.tcp://localhost:8000/SlaveConsoleService"/>
43          </baseAddresses>
44        </host>
45      </service>
46    </services>
47  </system.serviceModel>
48<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
Note: See TracBrowser for help on using the repository browser.