Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.Hive/3.3/app.config @ 7132

Last change on this file since 7132 was 7132, checked in by ascheibe, 12 years ago

#1672

  • fixed name of slave windows service

reviewing comments:

  • reduced MaxParallelDownloads to 2 to not completely overload cpus
  • renamed ServiceLocator to HiveServiceLocator
File size: 4.1 KB
Line 
1<?xml version="1.0"?>
2<configuration>
3  <configSections>
4    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5      <section name="HeuristicLab.Clients.Hive.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
6    </sectionGroup>
7  </configSections>
8  <applicationSettings>
9    <HeuristicLab.Clients.Hive.Settings>
10      <setting name="MaxParallelUploads" serializeAs="String">
11        <value>4</value>
12      </setting>
13      <setting name="HLBinaryName" serializeAs="String">
14        <value>HeuristicLab 3.3.exe</value>
15      </setting>
16      <setting name="ResultPollingInterval" serializeAs="String">
17        <value>00:00:20</value>
18      </setting>
19      <setting name="MaxParallelDownloads" serializeAs="String">
20        <value>2</value>
21      </setting>
22      <setting name="MaxRepeatServiceCalls" serializeAs="String">
23        <value>5</value>
24      </setting>
25    </HeuristicLab.Clients.Hive.Settings>
26  </applicationSettings>
27  <system.serviceModel>
28    <behaviors>
29      <endpointBehaviors>
30        <behavior name="HiveBehaviorConfiguration">
31          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
32        </behavior>
33      </endpointBehaviors>
34    </behaviors>
35    <bindings>
36      <wsHttpBinding>
37        <binding name="wsHttpBinding_Hive"
38                 closeTimeout="00:01:00"
39                 openTimeout="00:01:00"
40                 receiveTimeout="00:20:00"
41                 sendTimeout="00:20:00"
42                 bypassProxyOnLocal="false"
43                 transactionFlow="false"
44                 hostNameComparisonMode="StrongWildcard"
45                 maxBufferPoolSize="2147483647"
46                 maxReceivedMessageSize="2147483647"
47                 messageEncoding="Text"
48                 textEncoding="utf-8"
49                 useDefaultWebProxy="true"
50                 allowCookies="false">
51
52          <readerQuotas maxDepth="2147483647"
53                        maxStringContentLength="2147483647"
54                        maxArrayLength="2147483647"
55                        maxBytesPerRead="2147483647"
56                        maxNameTableCharCount="2147483647"/>
57          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
58          <security mode="Message">
59            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
60            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
61          </security>
62        </binding>
63      </wsHttpBinding>
64    </bindings>
65    <client>
66      <endpoint address="http://services.heuristiclab.com/Hive-3.3/HiveService.svc" binding="wsHttpBinding" bindingConfiguration="wsHttpBinding_Hive" contract="HeuristicLab.Clients.Hive.IHiveService" name="wsHttpBinding_IHiveService" behaviorConfiguration="HiveBehaviorConfiguration">
67        <identity>
68          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ=="/>
69        </identity>
70      </endpoint>
71    </client>
72  </system.serviceModel>
73  <startup>
74    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
75  </startup>
76</configuration>
Note: See TracBrowser for help on using the repository browser.