Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/app.config @ 4368

Last change on this file since 4368 was 4368, checked in by cneumuel, 14 years ago
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File size: 2.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3  <system.serviceModel>
4    <behaviors>
5      <endpointBehaviors>
6        <behavior name="ServerConsoleBehaviour">
7          <clientCredentials>
8            <serviceCertificate>
9              <authentication certificateValidationMode="None" />
10            </serviceCertificate>
11          </clientCredentials>
12        </behavior>
13      </endpointBehaviors>
14    </behaviors>
15    <bindings>
16      <wsHttpBinding>
17        <binding name="ServerConsoleHttpEndpoint" closeTimeout="00:01:00"
18            openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
19            bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
20            maxBufferPoolSize="524288" maxReceivedMessageSize="104857600"
21            messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
22            allowCookies="false">
23          <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600"
24              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
25          <reliableSession ordered="true" inactivityTimeout="00:10:00"
26              enabled="false" />
27          <security mode="Message">
28            <transport clientCredentialType="Windows" proxyCredentialType="None"
29                realm="" />
30            <message clientCredentialType="UserName" negotiateServiceCredential="true"
31                algorithmSuite="Default" />
32          </security>
33        </binding>
34      </wsHttpBinding>
35    </bindings>
36    <client>
37      <endpoint address="http://localhost:9000/ServerConsoleService" behaviorConfiguration="ServerConsoleBehaviour"
38          binding="wsHttpBinding" bindingConfiguration="ServerConsoleHttpEndpoint"
39          contract="HeuristicLab.Hive.Contracts.Interfaces.IServerConsoleFacade" name="ServerConsoleHttpEndpoint">
40        <identity>
41          <certificate encodedValue="AwAAAAEAAAAUAAAAJ5p7xBv8o/BZ9Lp1c1d+F13FxN8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhBvZlgTCjsfjEG5QUX7yOhOMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgzMDA5MTMyMVoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCbjJrhOtSpfFz51JPvdfxMVSKqnWhfzjrZvtwpVsy8D589m3SeS6AalWwtkpPCR2C+a4GKo9e689o0+BtuOugypAWqkUhkz//XLvUp5KPNB7igY7he4ngMLp4GsWBWZdl+P8g29t5+nde1Tiv6dPzx5YgfB9lrvZzaS6TT/eNasQIDAQABo0kwRzBFBgNVHQEEPjA8gBBPTuRH17g8MfpeT/ODWdXuoRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghBvZlgTCjsfjEG5QUX7yOhOMAkGBSsOAwIdBQADgYEAUpgK4sUxAqwR8eyRK8cmyzhhN31xN8/nKPIo9cETaNvjJXL8zO7DeXCyyiBETAkfnhIChRIAmE/PjxvFdB2fOuQY3/OHrobai+G7IQ8SHF+AKdx7cJXt0h4Okny4DpPjQl4V9P2lZaG8fVXmpKhpeZ+ChA8Y/xPCDzTzLleQ/mY=" />
42        </identity>
43      </endpoint>
44    </client>
45  </system.serviceModel>
46</configuration>
Note: See TracBrowser for help on using the repository browser.