Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/app_ascheibe.config @ 6168

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

#1233

  • removed Job-dto objects from slave core (since it stores outdated objects)
  • added command textbox to HiveJobView
  • improved the way the control buttons behave in HiveJobView
  • improved job control (pause and stop is also possible when job is not currently calculating)
  • improved gantt chart view (last state log entry is also displayed)
  • unified code for downloading jobs between experiment manager and hive engine
File size: 2.6 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://localhost/HiveService.svc"
36            binding="wsHttpBinding"
37            bindingConfiguration="wsHttpBinding_IHiveService"
38            contract="HeuristicLab.Clients.Hive.IHiveService"
39            name="wsHttpBinding_IHiveService">
40        <identity>
41          <certificate encodedValue="AwAAAAEAAAAUAAAAiQt8DnyaI8rYHhLNyW62i58+eG8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAFNFYz6Srdmk3PZJ/mka5sMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMTIwNjE0MTc0M1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCueTMWJzOZ1IBacG40aWdr3qDWijEO4VwhgtNr+WNFsRG+qW2rTZZFtaC0U028aj3MX13mr+pzpcPJMes2rr38PuxhN6BhdzgRfyEy/eHk4iKqZztuJSXgNAyfyjhovTchLitT2lilddTRFj2PlLYv+PUu+QhQNTm2iW4UDljS9wIDAQABo0kwRzBFBgNVHQEEPjA8gBBeipmIklE3kPz7i+AdKqAgoRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAFNFYz6Srdmk3PZJ/mka5sMAkGBSsOAwIdBQADgYEAGnxEaFT8QKKk1DtJ8/+TOBxSo0UkBlNiTY0HKkA3w/2DOPZKybhslm8gqJic8ZPsk5YgEibrdQqB0AnNG983RAlFqgGvsAbQAMXTDJ5GoTgHaxk/T+7a7Sk4xJALUL/vWuPGbA354RVoKA4gV3gJzU+Fj3/fLACf0+D/nR9B5nw=" />
42        </identity>
43
44      </endpoint>
45    </client>
46  </system.serviceModel>
47  <startup>
48    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
49  </startup>
50</configuration>
Note: See TracBrowser for help on using the repository browser.