Free cookie consent management tool by TermsFeed Policy Generator

source: branches/SlaveShutdown/HeuristicLab.Clients.Hive/3.3/app.config @ 8949

Last change on this file since 8949 was 8949, checked in by ascheibe, 12 years ago

#1986 added slave command for shutting down a computer

File size: 3.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3    <configSections>
4        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5            <section name="HeuristicLab.Clients.Hive.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
6        </sectionGroup>
7    </configSections>
8    <system.serviceModel>
9        <bindings>
10            <wsHttpBinding>
11                <binding name="WSHttpBinding_IHiveService" closeTimeout="00:01:00"
12                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
13                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
14                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
15                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
16                    allowCookies="false">
17                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
18                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
19                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
20                        enabled="false" />
21                    <security mode="Message">
22                        <transport clientCredentialType="Windows" proxyCredentialType="None"
23                            realm="" />
24                        <message clientCredentialType="UserName" negotiateServiceCredential="true"
25                            algorithmSuite="Default" />
26                    </security>
27                </binding>
28            </wsHttpBinding>
29        </bindings>
30        <client>
31            <endpoint address="http://localhost/Hive-3.3/HiveService.svc"
32                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService"
33                contract="HeuristicLab.Clients.Hive.IHiveService" name="WSHttpBinding_IHiveService">
34                <identity>
35                    <certificate encodedValue="AwAAAAEAAAAUAAAAQkazTmWcZqFuuREaov8jmDtOu4UgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAVedIj+0w6jEdhZErAeemyMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTExMDkwNjA4NDUzOVoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCiKeSwXFm0qxkuMFao9NHftClUYvX0jpiyKFthUnutfhB2FF3Ie8a8U15M+GBYSZOV5vXlEn3D30HsV/x6L9/UU1fiJndJd5lWI2/4mP2jra0qP0b8xyitHfRhePIfpDkufZqIOvOmT/DoFqMTK3joexzuEmAw5Ugil6fbOxELlwIDAQABo0kwRzBFBgNVHQEEPjA8gBCJmAWIXCTyTFXdjdnseED4oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAVedIj+0w6jEdhZErAeemyMAkGBSsOAwIdBQADgYEACW9nLJnu1+OJg93AAKfWqkiETHcXUcULrPjMWJQsy5fkHY1qExKBGeUJHK0REvqQs3KRY3GqikMjlAnDmb/e9P1h+PynsRv7y2zAGCnKW4nryWVncWf1xJL9xvKNuH2aR4+Wdq9oo2m793+RXtA7YTSsr/OiiIdkQcjUGQtkaYo=" />
36                </identity>
37            </endpoint>
38        </client>
39    </system.serviceModel>
40    <applicationSettings>
41        <HeuristicLab.Clients.Hive.Settings>
42            <setting name="MaxParallelUploads" serializeAs="String">
43                <value>4</value>
44            </setting>
45            <setting name="HLBinaryName" serializeAs="String">
46                <value>HeuristicLab 3.3.exe</value>
47            </setting>
48            <setting name="ResultPollingInterval" serializeAs="String">
49                <value>00:00:20</value>
50            </setting>
51            <setting name="MaxParallelDownloads" serializeAs="String">
52                <value>2</value>
53            </setting>
54            <setting name="MaxRepeatServiceCalls" serializeAs="String">
55                <value>5</value>
56            </setting>
57            <setting name="AnonymousUserName" serializeAs="String">
58                <value>anonymous</value>
59            </setting>
60        </HeuristicLab.Clients.Hive.Settings>
61    </applicationSettings>
62</configuration>
Note: See TracBrowser for help on using the repository browser.