Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.3/app.config @ 6940

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

#1233

  • fixed naming of binding configurations
  • fixed small bug in Status page
File size: 3.5 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    </HeuristicLab.Clients.Hive.Settings>
17  </applicationSettings>
18  <system.serviceModel>
19    <bindings>
20      <wsHttpBinding>
21        <binding name="wsHttpBinding_Hive"
22                 closeTimeout="00:01:00"
23                 openTimeout="00:01:00"
24                 receiveTimeout="00:20:00"
25                 sendTimeout="00:20:00"
26                 bypassProxyOnLocal="false"
27                 transactionFlow="false"
28                 hostNameComparisonMode="StrongWildcard"
29                 maxBufferPoolSize="2147483647"
30                 maxReceivedMessageSize="2147483647"
31                 messageEncoding="Text"
32                 textEncoding="utf-8"
33                 useDefaultWebProxy="true"
34                 allowCookies="false">
35
36          <readerQuotas maxDepth="2147483647"
37                        maxStringContentLength="2147483647"
38                        maxArrayLength="2147483647"
39                        maxBytesPerRead="2147483647"
40                        maxNameTableCharCount="2147483647"/>
41          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
42          <security mode="Message">
43            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
44            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
45          </security>
46        </binding>
47      </wsHttpBinding>
48    </bindings>
49    <client>
50      <endpoint address="http://services.heuristiclab.com/Hive-3.3/HiveService.svc" binding="wsHttpBinding" bindingConfiguration="wsHttpBinding_Hive" contract="HeuristicLab.Clients.Hive.IHiveService" name="wsHttpBinding_IHiveService">
51        <identity>
52          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ=="/>
53        </identity>
54      </endpoint>
55    </client>
56  </system.serviceModel>
57  <startup>
58    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
59  </startup>
60</configuration>
Note: See TracBrowser for help on using the repository browser.