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 @ 4539

Last change on this file since 4539 was 4423, checked in by cneumuel, 14 years ago
  • Refactored HL.Hive.Experiment. JobItems are not called HiveJobs and OptimizerJobs do not contain a hierarchy anymore.
  • Dynamic generation of jobs on a slave are not reflected on the client user interface.
  • Optimizer-Trees are now strictly synchronized with the HiveJob-Trees (also the ComputeInParallel property is taken into account when the Child HiveJobs are created)
  • Improved the way a class can report progress and lock the UI (IProgressReporter, IProgress, Progress, ProgressView)
  • Changes were made to the config-files, so that server and clients work with blade12.hpc.fh-hagenberg.at
  • Lots of small changes and bugfixes
File size: 2.8 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://blade12.hpc.fh-hagenberg.at:9000/ServerConsoleService" behaviorConfiguration="ServerConsoleBehaviour"
38          binding="wsHttpBinding" bindingConfiguration="ServerConsoleHttpEndpoint"
39          contract="HeuristicLab.Hive.Contracts.Interfaces.IServerConsoleFacade" name="ServerConsoleHttpEndpoint">
40        <identity>
41          <certificate encodedValue="AwAAAAEAAAAUAAAA0FkTGjOA2/0cZmFlIwFildV5a/ogAAAAAQAAACgCAAAwggIkMIIBkaADAgECAhCcCYkXdzUDsEzY5+POfdYRMAkGBSsOAwIdBQAwJjEkMCIGA1UEAxMbYmxhZGUxMi5ocGMuZmgtaGFnZW5iZXJnLmF0MB4XDTEwMDkxNTE0MjkyNFoXDTM5MTIzMTIzNTk1OVowJjEkMCIGA1UEAxMbYmxhZGUxMi5ocGMuZmgtaGFnZW5iZXJnLmF0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN/VsuexELvneBS+KjIT4z1oj8VwitpZJDhCVxVM1hBVAXRJ9qE0zwFwen6KWRXKMx0wZvm47CdkENO0krsqfliQRKb0hcMin+37X8u1Xk51qebV3M0kUAEpsRT6RehQD41+iGe1GmIaLksCEYaH80wPWI7F3N/tN+5svizD0sfQIDAQABo1swWTBXBgNVHQEEUDBOgBBJWfbAcVJ+egMO9eh/uP3hoSgwJjEkMCIGA1UEAxMbYmxhZGUxMi5ocGMuZmgtaGFnZW5iZXJnLmF0ghCcCYkXdzUDsEzY5+POfdYRMAkGBSsOAwIdBQADgYEApOwttaruQRFtS8SWslEDt+aKzIUnfKrJ+7U7Fml5+QT7G4+5bXnfOs5gcWKDQyyap9y3AJpjPnGaLzwb/8LwlqKXePRQvOW44O5JLwOTo3TD4ZPKANuBblD7J7TYGyXKTUQcytfQl1uOxELWNBj4IpUEbR1C/S4RmupMivLNQoA=" />
42        </identity>
43      </endpoint>
44    </client>
45  </system.serviceModel>
46</configuration>
Note: See TracBrowser for help on using the repository browser.