Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Communication/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: 5.0 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3  <configSections>
4    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5      <section name="HeuristicLab.Hive.Slave.Communication.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6    </sectionGroup>
7  </configSections>
8  <system.serviceModel>
9    <bindings>
10      <netTcpBinding>
11        <binding name="SlaveTcpStreamedEndpoint" closeTimeout="00:01:00"
12          openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
13          transactionFlow="false" transferMode="Streamed" transactionProtocol="OleTransactions"
14          hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288"
15          maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="104857600">
16          <readerQuotas maxDepth="32" maxStringContentLength="104857600"
17            maxArrayLength="104857600" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
18          <reliableSession ordered="true" inactivityTimeout="00:10:00"
19            enabled="false" />
20          <security mode="TransportWithMessageCredential">
21            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
22            <message clientCredentialType="UserName" algorithmSuite="Default" />
23          </security>
24        </binding>
25      </netTcpBinding>
26      <wsHttpBinding>
27        <binding name="SlaveHttpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00"
28          receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false"
29          transactionFlow="false" hostNameComparisonMode="StrongWildcard"
30          maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
31          textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
32          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
33            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
34          <reliableSession ordered="true" inactivityTimeout="00:10:00"
35            enabled="false" />
36          <security mode="Message">
37            <transport clientCredentialType="Windows" proxyCredentialType="None"
38              realm="" />
39            <message clientCredentialType="UserName" negotiateServiceCredential="true"
40              algorithmSuite="Default" />
41          </security>
42        </binding>
43      </wsHttpBinding>
44    </bindings>
45    <client>
46      <endpoint address="http://blade12.hpc.fh-hagenberg.at:9000/SlaveService" binding="wsHttpBinding" behaviorConfiguration="SlaveServiceBehaviour"
47        bindingConfiguration="SlaveHttpEndpoint" contract="SlaveFacade.ISlaveFacade"
48        name="SlaveHttpEndpoint">
49        <identity>
50          <certificate encodedValue="AwAAAAEAAAAUAAAA0FkTGjOA2/0cZmFlIwFildV5a/ogAAAAAQAAACgCAAAwggIkMIIBkaADAgECAhCcCYkXdzUDsEzY5+POfdYRMAkGBSsOAwIdBQAwJjEkMCIGA1UEAxMbYmxhZGUxMi5ocGMuZmgtaGFnZW5iZXJnLmF0MB4XDTEwMDkxNTE0MjkyNFoXDTM5MTIzMTIzNTk1OVowJjEkMCIGA1UEAxMbYmxhZGUxMi5ocGMuZmgtaGFnZW5iZXJnLmF0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN/VsuexELvneBS+KjIT4z1oj8VwitpZJDhCVxVM1hBVAXRJ9qE0zwFwen6KWRXKMx0wZvm47CdkENO0krsqfliQRKb0hcMin+37X8u1Xk51qebV3M0kUAEpsRT6RehQD41+iGe1GmIaLksCEYaH80wPWI7F3N/tN+5svizD0sfQIDAQABo1swWTBXBgNVHQEEUDBOgBBJWfbAcVJ+egMO9eh/uP3hoSgwJjEkMCIGA1UEAxMbYmxhZGUxMi5ocGMuZmgtaGFnZW5iZXJnLmF0ghCcCYkXdzUDsEzY5+POfdYRMAkGBSsOAwIdBQADgYEApOwttaruQRFtS8SWslEDt+aKzIUnfKrJ+7U7Fml5+QT7G4+5bXnfOs5gcWKDQyyap9y3AJpjPnGaLzwb/8LwlqKXePRQvOW44O5JLwOTo3TD4ZPKANuBblD7J7TYGyXKTUQcytfQl1uOxELWNBj4IpUEbR1C/S4RmupMivLNQoA=" />
51        </identity>
52      </endpoint>
53      <endpoint address="net.tcp://blade12.hpc.fh-hagenberg.at:9001/SlaveServiceStreamed" behaviorConfiguration="SlaveServiceBehaviour"
54        binding="netTcpBinding" bindingConfiguration="SlaveTcpStreamedEndpoint"
55        contract="SlaveFacade.ISlaveFacade" name="SlaveTcpStreamedEndpoint">
56        <identity>
57          <dns value="blade12.hpc.fh-hagenberg.at" />
58        </identity>
59      </endpoint>
60    </client>
61    <behaviors>
62      <endpointBehaviors>
63        <behavior name="SlaveServiceBehaviour">
64          <clientCredentials>
65            <serviceCertificate>
66              <authentication certificateValidationMode="None" />
67            </serviceCertificate>
68          </clientCredentials>
69        </behavior>
70      </endpointBehaviors>
71    </behaviors>
72   
73  </system.serviceModel>
74  <userSettings>
75    <HeuristicLab.Hive.Slave.Communication.Properties.Settings>
76      <setting name="HiveUsername" serializeAs="String">
77        <value>hiveslave</value>
78      </setting>
79      <setting name="HivePassword" serializeAs="String">
80        <value>hiveslave</value>
81      </setting>
82    </HeuristicLab.Hive.Slave.Communication.Properties.Settings>
83  </userSettings>
84</configuration>
Note: See TracBrowser for help on using the repository browser.