Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/app.config @ 5156

Last change on this file since 5156 was 5156, checked in by ascheibe, 14 years ago

#1233

  • Implemented communication interface between Slave and a Slave Client using Named Pipes and callbacks
  • Added new project for testing Slave - Client communication
  • Added some copyright info headers
File size: 1.3 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.Clients.Hive.Slave.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.Clients.Hive.Slave.Properties.Settings>
10            <setting name="Guid" serializeAs="String">
11                <value>00000000-0000-0000-0000-000000000000</value>
12            </setting>
13        </HeuristicLab.Clients.Hive.Slave.Properties.Settings>
14    </userSettings>
15
16  <system.serviceModel>
17    <services>
18      <service name="HeuristicLab.Clients.Hive.Slave.SlaveCommunicationService">       
19        <endpoint address="net.pipe://localhost/HeuristicLabSlaveCom"
20                  binding="netNamedPipeBinding"
21                  contract="HeuristicLab.Clients.Hive.Slave.ServiceContracts.ISlaveCommunication"                 
22                   />
23      </service>
24    </services>
25  </system.serviceModel>
26
27</configuration>
Note: See TracBrowser for help on using the repository browser.