Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment/3.3/app.config @ 4333

Last change on this file since 4333 was 4333, checked in by cneumuel, 14 years ago

added authorizationManager which checks for permission to specific jobs (#1168)

File size: 7.6 KB
Line 
1<?xml version="1.0"?>
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.Experiment.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  <userSettings>
9    <HeuristicLab.Hive.Experiment.Properties.Settings>
10      <setting name="ResourceIds" serializeAs="String">
11        <value>MyGroup</value>
12      </setting>
13      <setting name="HiveServerIp" serializeAs="String">
14        <value>localhost</value>
15      </setting>
16      <setting name="HiveUsername" serializeAs="String">
17        <value>cneumueller</value>
18      </setting>
19      <setting name="HivePassword" serializeAs="String">
20        <value>cneumueller</value>
21      </setting>
22      <setting name="HiveServerPort" serializeAs="String">
23        <value>9000</value>
24      </setting>
25    </HeuristicLab.Hive.Experiment.Properties.Settings>
26  </userSettings>
27  <system.serviceModel>
28
29    <bindings>
30      <netTcpBinding>
31        <binding name="ClientTcpStreamedEndpoint" closeTimeout="00:01:00"
32            openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"
33            transactionFlow="false" transferMode="Streamed" transactionProtocol="OleTransactions"
34            hostNameComparisonMode="StrongWildcard" listenBacklog="100"
35            maxBufferPoolSize="104857600" maxBufferSize="104857600" maxConnections="100"
36            maxReceivedMessageSize="104857600">
37          <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600"
38              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
39          <reliableSession ordered="true" inactivityTimeout="00:10:00"
40              enabled="false" />
41          <security mode="TransportWithMessageCredential">
42            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
43            <message clientCredentialType="UserName" algorithmSuite="Default" />
44          </security>
45        </binding>
46        <binding name="ClientTcpMexEndpoint" closeTimeout="00:01:00"
47            openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
48            transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
49            hostNameComparisonMode="StrongWildcard" listenBacklog="100"
50            maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="100"
51            maxReceivedMessageSize="65536">
52          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
53              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
54          <reliableSession ordered="true" inactivityTimeout="00:10:00"
55              enabled="false" />
56          <security mode="None">
57            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
58            <message clientCredentialType="Windows" />
59          </security>
60        </binding>
61      </netTcpBinding>
62      <wsHttpBinding>
63        <binding name="ClientHttpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00"
64            receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false"
65            transactionFlow="false" hostNameComparisonMode="StrongWildcard"
66            maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
67            messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
68            allowCookies="false">
69          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
70              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
71          <reliableSession ordered="true" inactivityTimeout="00:10:00"
72              enabled="false" />
73          <security mode="Message">
74            <transport clientCredentialType="Windows" proxyCredentialType="None"
75                realm="" />
76            <message clientCredentialType="UserName" negotiateServiceCredential="true"
77                algorithmSuite="Default" />
78          </security>
79        </binding>
80        <binding name="ClientHttpMexEndpoint" closeTimeout="00:01:00"
81            openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
82            bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
83            maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
84            messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
85            allowCookies="false">
86          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
87              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
88          <reliableSession ordered="true" inactivityTimeout="00:10:00"
89              enabled="false" />
90          <security mode="None">
91            <transport clientCredentialType="Windows" proxyCredentialType="None"
92                realm="" />
93            <message clientCredentialType="Windows" negotiateServiceCredential="true" />
94          </security>
95        </binding>
96      </wsHttpBinding>
97    </bindings>
98    <client>
99      <endpoint address="net.tcp://localhost:9001/ClientServiceStreamed" behaviorConfiguration="ClientServiceBehaviour"
100          binding="netTcpBinding" bindingConfiguration="ClientTcpStreamedEndpoint"
101          contract="HeuristicLab.Hive.Contracts.Interfaces.IClientFacade" name="ClientTcpStreamedEndpoint">
102        <identity>
103          <dns value="localhost" />
104        </identity>
105      </endpoint>
106      <endpoint address="net.tcp://localhost:9001/ClientServiceStreamed/mex"
107          binding="netTcpBinding" bindingConfiguration="ClientTcpMexEndpoint"
108          contract="IClientFacade" name="ClientTcpMexEndpoint" />
109      <endpoint address="http://localhost:9000/ClientService" behaviorConfiguration="ClientServiceBehaviour" binding="wsHttpBinding"
110          bindingConfiguration="ClientHttpEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IClientFacade"
111          name="ClientHttpEndpoint">
112        <identity>
113          <certificate encodedValue="AwAAAAEAAAAUAAAAeBLH/0jWrlsW42fIC8VIIdAE6PUgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhDez3CoJIIitEZ5xwVqLJn6MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMzE1NTg0OFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCmOgweB6X4Ss6W2xb2hg1x61cjD2T7SO0ckkzmtqRhC2UWly9dBnonFJmg9RjN0y6l2tZhVzNhq8DgCkn3hPg5GL3XIwYX4PsXwNmeT6i+7s6rGbESuaEMvYOAQJSJ+MTgBvXCwo2g5nFHIBqP4W4aU2eybxP7H4cm1rQpoYHHjQIDAQABo0kwRzBFBgNVHQEEPjA8gBASDhO/IE7Ff7PpkCVF8oUpoRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghDez3CoJIIitEZ5xwVqLJn6MAkGBSsOAwIdBQADgYEAhxAzm3JTV7j51jti5P7izTEs7+8534kQloeAJDwlKolkd4ZMkf0BiexC2Vt1KsnxUjrK0HbbITzazkvkAmKi7dP+4G+3SrWag5lS4NcoPjTQy16T3zC9E6yafRaZp1/pxjC3Ap44qwq4Kjl2mEjeHHsdie/h4loowTqC9FlLbgo=" />
114        </identity>
115      </endpoint>
116      <endpoint address="http://localhost:9000/ClientService/mex"
117          binding="wsHttpBinding" bindingConfiguration="ClientHttpMexEndpoint"
118          contract="HeuristicLab.Hive.Contracts.Interfaces.IClientFacade" name="ClientHttpMexEndpoint" />
119    </client>
120
121    <behaviors>
122      <endpointBehaviors>
123        <behavior name="ClientServiceBehaviour">
124          <clientCredentials>
125            <serviceCertificate>
126              <authentication certificateValidationMode="None" />
127            </serviceCertificate>
128          </clientCredentials>
129        </behavior>
130      </endpointBehaviors>
131    </behaviors>
132
133  </system.serviceModel>
134</configuration>
Note: See TracBrowser for help on using the repository browser.