Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Communication/3.3/app.config @ 4810

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

#1260

  • changed dependency discovery machanism: now all locally loaded plugins will be dependencies for a job.
  • fixed logging of slaveconsole by limiting the maximum log-messages
  • minor bug fixes.
File size: 4.8 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.Communication.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  <system.serviceModel>
9    <bindings>
10      <netTcpBinding>
11        <binding name="SlaveTcpStreamedEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false" transferMode="Streamed" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="104857600">
12          <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
13          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
14          <security mode="TransportWithMessageCredential">
15            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign"/>
16            <message clientCredentialType="UserName" algorithmSuite="Default"/>
17          </security>
18        </binding>
19      </netTcpBinding>
20      <wsHttpBinding>
21        <binding name="SlaveHttpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
22          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
23          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
24          <security mode="Message">
25            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
26            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
27          </security>
28        </binding>
29      </wsHttpBinding>
30    </bindings>
31    <client>
32      <endpoint address="http://services.heuristiclab.com/Hive-3.3/SlaveService.svc" binding="wsHttpBinding" behaviorConfiguration="SlaveServiceBehaviour" bindingConfiguration="SlaveHttpEndpoint" contract="SlaveFacade.ISlaveFacade" name="SlaveHttpEndpoint">
33        <identity>
34          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ=="/>
35        </identity>
36      </endpoint>
37      <endpoint address="net.tcp://services.heuristiclab.com:8000/Hive-3.3/SlaveService.svc" behaviorConfiguration="SlaveServiceBehaviour" binding="netTcpBinding" bindingConfiguration="SlaveTcpStreamedEndpoint" contract="SlaveFacade.ISlaveFacade" name="SlaveTcpStreamedEndpoint">
38        <identity>
39          <dns value="services.heuristiclab.com"/>
40        </identity>
41      </endpoint>
42    </client>
43    <behaviors>
44      <endpointBehaviors>
45        <behavior name="SlaveServiceBehaviour">
46          <clientCredentials>
47            <serviceCertificate>
48              <authentication certificateValidationMode="None"/>
49            </serviceCertificate>
50          </clientCredentials>
51        </behavior>
52      </endpointBehaviors>
53    </behaviors>
54   
55  </system.serviceModel>
56  <userSettings>
57    <HeuristicLab.Hive.Slave.Communication.Properties.Settings>
58      <setting name="HiveUsername" serializeAs="String">
59        <value>hiveslave</value>
60      </setting>
61      <setting name="HivePassword" serializeAs="String">
62        <value>hiveslave</value>
63      </setting>
64    </HeuristicLab.Hive.Slave.Communication.Properties.Settings>
65  </userSettings>
66<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
Note: See TracBrowser for help on using the repository browser.