Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1233

  • refactoring of slave core
  • created JobManager, which is responsible for managing jobs without knowing anything about the service. this class is easier testable than slave core
  • lots of cleanup
  • created console test project for slave
File size: 2.7 KB
Line 
1<?xml version="1.0"?>
2<configuration>
3  <system.serviceModel>
4    <bindings>
5      <wsHttpBinding>
6        <binding name="wsHttpBinding_IHiveService"
7                 closeTimeout="00:01:00"
8                 openTimeout="00:01:00"
9                 receiveTimeout="00:20:00"
10                 sendTimeout="00:20:00"
11                 bypassProxyOnLocal="false"
12                 transactionFlow="false"
13                 hostNameComparisonMode="StrongWildcard"
14                 maxBufferPoolSize="2147483647"
15                 maxReceivedMessageSize="2147483647"
16                 messageEncoding="Text"
17                 textEncoding="utf-8"
18                 useDefaultWebProxy="true"
19                 allowCookies="false">
20
21          <readerQuotas maxDepth="2147483647"
22                        maxStringContentLength="2147483647"
23                        maxArrayLength="2147483647"
24                        maxBytesPerRead="2147483647"
25                        maxNameTableCharCount="2147483647"/>
26          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
27          <security mode="Message">
28            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
29            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
30          </security>
31        </binding>
32      </wsHttpBinding>
33    </bindings>
34    <client>
35      <endpoint address="http://services.heuristiclab.com/Hive-3.4/HiveService.svc" binding="wsHttpBinding" bindingConfiguration="wsHttpBinding_IHiveService" contract="HeuristicLab.Clients.Hive.IHiveService" name="wsHttpBinding_IHiveService">
36        <identity>
37          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ=="/>
38        </identity>
39      </endpoint>
40    </client>
41  </system.serviceModel>
42  <startup>
43    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
44  </startup>
45</configuration>
Note: See TracBrowser for help on using the repository browser.