Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Console/3.3/app.config @ 4337

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

changed Slave.Core WCF-Proxy to stateless object

File size: 2.1 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.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"
19          openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
20          transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
21          hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288"
22          maxBufferSize="65536" maxReceivedMessageSize="65536">
23          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
24            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
25          <reliableSession ordered="true" inactivityTimeout="00:10:00"
26            enabled="false" />
27          <security mode="None">
28            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
29            <message clientCredentialType="Windows" />
30          </security>
31        </binding>
32      </netTcpBinding>
33    </bindings>
34    <client>
35      <endpoint address="net.tcp://localhost:8000/SlaveConsoleService"
36        binding="netTcpBinding" bindingConfiguration="SlaveConsoleTcpEndpoint"
37        contract="SlaveConsoleService.ISlaveConsoleCommunicator" name="SlaveConsoleTcpEndpoint" />
38    </client>
39  </system.serviceModel>
40</configuration>
Note: See TracBrowser for help on using the repository browser.