Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Core/3.3/app.config @ 4333

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

added authorizationManager which checks for permission to specific jobs (#1168)

File size: 2.2 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
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="ServerIP" serializeAs="String">
11        <value />
12      </setting>
13      <setting name="Guid" serializeAs="String">
14        <value>00000000-0000-0000-0000-000000000000</value>
15      </setting>
16    </HeuristicLab.Hive.Slave.Core.Properties.Settings>
17  </userSettings>
18  <system.serviceModel>
19    <behaviors>
20      <serviceBehaviors>
21        <behavior name="SlaveConsoleServiceBehaviour">
22          <serviceMetadata />
23        </behavior>
24      </serviceBehaviors>
25    </behaviors>
26    <bindings>
27      <netTcpBinding>
28        <binding name="SlaveConsoleTcpBinding" listenBacklog="100" maxConnections="100">
29          <security mode="None">
30            <transport/>
31          </security>
32        </binding>
33      </netTcpBinding>
34    </bindings>
35    <services>
36      <service behaviorConfiguration="SlaveConsoleServiceBehaviour"
37        name="HeuristicLab.Hive.Slave.Core.SlaveConsoleService.SlaveConsoleCommunicator">
38        <endpoint binding="netTcpBinding" bindingConfiguration="SlaveConsoleTcpBinding"
39          name="SlaveConsoleTcpEndpoint" contract="HeuristicLab.Hive.Slave.Core.SlaveConsoleService.Interfaces.ISlaveConsoleCommunicator" />
40        <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration=""
41          name="SlaveConsoleTcpMexEndpoint" contract="IMetadataExchange" />
42        <host>
43          <baseAddresses>
44            <add baseAddress="net.tcp://localhost:8000/SlaveConsoleService" />
45          </baseAddresses>
46        </host>
47      </service>
48    </services>
49  </system.serviceModel>
50</configuration>
Note: See TracBrowser for help on using the repository browser.