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.PluginInfrastructure.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
---|
6 | <section name="HeuristicLab.Optimizer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
---|
7 | <section name="HeuristicLab.Persistence.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
---|
8 | <section name="HeuristicLab.Hive.ExperimentManager.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
---|
9 | <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" />
|
---|
10 | <section name="HeuristicLab.Hive.Slave.Core.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
---|
11 | <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" />
|
---|
12 | <section name="HeuristicLab.Hive.Slave.Console.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
---|
13 | </sectionGroup>
|
---|
14 | </configSections>
|
---|
15 | <connectionStrings>
|
---|
16 | <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" />
|
---|
17 | <add name="HeuristicLab.Hive.Server.LINQDataAccess.Properties.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive;Integrated Security=True;" providerName="System.Data.SqlClient" />
|
---|
18 | </connectionStrings>
|
---|
19 | <!-- [chn] TODO: system.web should be located in HeuristicLab.Hive.Server.Core/app.config, but the ConfigMerger does not merge system.web (yet) -->
|
---|
20 | <system.web>
|
---|
21 | <membership>
|
---|
22 | <providers>
|
---|
23 | <clear />
|
---|
24 | <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="HeuristicLab.Authentication" />
|
---|
25 | </providers>
|
---|
26 | </membership>
|
---|
27 | <roleManager enabled="true">
|
---|
28 | <providers>
|
---|
29 | <clear />
|
---|
30 | <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
|
---|
31 | </providers>
|
---|
32 | </roleManager>
|
---|
33 | </system.web>
|
---|
34 | <system.serviceModel>
|
---|
35 | <behaviors>
|
---|
36 | <endpointBehaviors>
|
---|
37 | <behavior name="SerializationBehavior">
|
---|
38 | <dataContractSerializer maxItemsInObjectGraph="1000000" />
|
---|
39 | </behavior>
|
---|
40 | <behavior name="ClientServiceBehaviour">
|
---|
41 | <clientCredentials>
|
---|
42 | <serviceCertificate>
|
---|
43 | <authentication certificateValidationMode="None" />
|
---|
44 | </serviceCertificate>
|
---|
45 | </clientCredentials>
|
---|
46 | </behavior>
|
---|
47 | <behavior name="ServerConsoleBehaviour">
|
---|
48 | <clientCredentials>
|
---|
49 | <serviceCertificate>
|
---|
50 | <authentication certificateValidationMode="None" />
|
---|
51 | </serviceCertificate>
|
---|
52 | </clientCredentials>
|
---|
53 | </behavior>
|
---|
54 | <behavior name="SlaveServiceBehaviour">
|
---|
55 | <clientCredentials>
|
---|
56 | <serviceCertificate>
|
---|
57 | <authentication certificateValidationMode="None" />
|
---|
58 | </serviceCertificate>
|
---|
59 | </clientCredentials>
|
---|
60 | </behavior>
|
---|
61 | </endpointBehaviors>
|
---|
62 | <serviceBehaviors>
|
---|
63 | <behavior name="ServiceBehaviour">
|
---|
64 | <serviceMetadata httpGetEnabled="true" httpsGetEnabled="false" />
|
---|
65 | <serviceDebug includeExceptionDetailInFaults="true" />
|
---|
66 | <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider" />
|
---|
67 | <serviceCredentials>
|
---|
68 | <serviceCertificate findValue="blade12.hpc.fh-hagenberg.at" x509FindType="FindBySubjectName" />
|
---|
69 | <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider" />
|
---|
70 | </serviceCredentials>
|
---|
71 | <serviceSecurityAudit auditLogLocation="Application" suppressAuditFailure="false" messageAuthenticationAuditLevel="SuccessOrFailure" />
|
---|
72 | <serviceThrottling maxConcurrentCalls="100" />
|
---|
73 | </behavior>
|
---|
74 | <behavior name="SlaveConsoleServiceBehaviour">
|
---|
75 | <serviceMetadata />
|
---|
76 | </behavior>
|
---|
77 | </serviceBehaviors>
|
---|
78 | </behaviors>
|
---|
79 | <bindings>
|
---|
80 | <wsHttpBinding>
|
---|
81 | <binding name="WSHttpBinding_IUpdate" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="200000000" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
82 | <readerQuotas maxDepth="32" maxStringContentLength="32000" maxArrayLength="200000000" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
83 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
|
---|
84 | <security mode="Message">
|
---|
85 | <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
|
---|
86 | <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true" />
|
---|
87 | </security>
|
---|
88 | </binding>
|
---|
89 | <binding name="WSHttpBinding_IAdmin" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="200000000" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
90 | <readerQuotas maxDepth="32" maxStringContentLength="32000" maxArrayLength="200000000" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
91 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
|
---|
92 | <security mode="Message">
|
---|
93 | <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
|
---|
94 | <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true" />
|
---|
95 | </security>
|
---|
96 | </binding>
|
---|
97 | <binding name="ClientHttpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
98 | <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
99 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
|
---|
100 | <security mode="Message">
|
---|
101 | <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
|
---|
102 | <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default" />
|
---|
103 | </security>
|
---|
104 | </binding>
|
---|
105 | <binding name="HiveServerHttpBinding">
|
---|
106 | <security mode="Message">
|
---|
107 | <transport />
|
---|
108 | <message clientCredentialType="UserName" />
|
---|
109 | </security>
|
---|
110 | </binding>
|
---|
111 | <binding name="ServerConsoleHttpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="104857600" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
112 | <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
113 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
|
---|
114 | <security mode="Message">
|
---|
115 | <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
|
---|
116 | <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default" />
|
---|
117 | </security>
|
---|
118 | </binding>
|
---|
119 | <binding name="SlaveHttpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="104857600" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
120 | <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600" maxBytesPerRead="104857600" maxNameTableCharCount="104857600" />
|
---|
121 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
|
---|
122 | <security mode="Message">
|
---|
123 | <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
|
---|
124 | <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default" />
|
---|
125 | </security>
|
---|
126 | </binding>
|
---|
127 | </wsHttpBinding>
|
---|
128 | <netTcpBinding>
|
---|
129 | <binding name="ClientTcpStreamedEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false" transferMode="Streamed" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="104857600">
|
---|
130 | <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
131 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
|
---|
132 | <security mode="TransportWithMessageCredential">
|
---|
133 | <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
|
---|
134 | <message clientCredentialType="UserName" algorithmSuite="Default" />
|
---|
135 | </security>
|
---|
136 | </binding>
|
---|
137 | <binding name="TcpStreamedBinding" sendTimeout="00:10:00" transferMode="Streamed" maxBufferPoolSize="104857600" maxBufferSize="104857600" maxReceivedMessageSize="104857600" maxConnections="50">
|
---|
138 | <readerQuotas maxStringContentLength="104857600" maxArrayLength="104857600" />
|
---|
139 | <security mode="TransportWithMessageCredential">
|
---|
140 | <transport clientCredentialType="Certificate" />
|
---|
141 | <message clientCredentialType="UserName" />
|
---|
142 | </security>
|
---|
143 | </binding>
|
---|
144 | <binding name="SlaveConsoleTcpBinding" maxReceivedMessageSize="104857600">
|
---|
145 | <readerQuotas maxArrayLength="104857600" maxBytesPerRead="104857600" maxStringContentLength="104857600" />
|
---|
146 | <security mode="None">
|
---|
147 | <transport />
|
---|
148 | </security>
|
---|
149 | </binding>
|
---|
150 | <binding name="SlaveTcpStreamedEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false" transferMode="Streamed" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="104857600">
|
---|
151 | <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
152 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
|
---|
153 | <security mode="TransportWithMessageCredential">
|
---|
154 | <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
|
---|
155 | <message clientCredentialType="UserName" algorithmSuite="Default" />
|
---|
156 | </security>
|
---|
157 | </binding>
|
---|
158 | <binding name="SlaveConsoleTcpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxBufferSize="65536" maxReceivedMessageSize="65536">
|
---|
159 | <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600" maxBytesPerRead="104857600" maxNameTableCharCount="104857600" />
|
---|
160 | <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
|
---|
161 | <security mode="None">
|
---|
162 | <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
|
---|
163 | <message clientCredentialType="Windows" />
|
---|
164 | </security>
|
---|
165 | </binding>
|
---|
166 | </netTcpBinding>
|
---|
167 | </bindings>
|
---|
168 | <client>
|
---|
169 | <endpoint address="http://services.heuristiclab.com/Deployment-3.3/Update.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IUpdate" contract="HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate" name="WSHttpBinding_IUpdate">
|
---|
170 | <identity>
|
---|
171 | <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
|
---|
172 | </identity>
|
---|
173 | </endpoint>
|
---|
174 | <endpoint address="http://services.heuristiclab.com/Deployment-3.3/Admin.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdmin" contract="HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin" name="WSHttpBinding_IAdmin">
|
---|
175 | <identity>
|
---|
176 | <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
|
---|
177 | </identity>
|
---|
178 | </endpoint>
|
---|
179 | <endpoint address="net.tcp://services.heuristiclab.com:8000/Hive-3.3/ClientService.svc" behaviorConfiguration="ClientServiceBehaviour" binding="netTcpBinding" bindingConfiguration="ClientTcpStreamedEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IClientFacade" name="ClientTcpStreamedEndpoint">
|
---|
180 | <identity>
|
---|
181 | <dns value="services.heuristiclab.com" />
|
---|
182 | </identity>
|
---|
183 | </endpoint>
|
---|
184 | <endpoint address="http://services.heuristiclab.com/Hive-3.3/ClientService.svc" binding="wsHttpBinding" behaviorConfiguration="ClientServiceBehaviour" bindingConfiguration="ClientHttpEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IClientFacade" name="ClientHttpEndpoint">
|
---|
185 | <identity>
|
---|
186 | <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
|
---|
187 | </identity>
|
---|
188 | </endpoint>
|
---|
189 | <endpoint address="http://services.heuristiclab.com/Hive-3.3/ServerConsoleService.svc" behaviorConfiguration="ServerConsoleBehaviour" binding="wsHttpBinding" bindingConfiguration="ServerConsoleHttpEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IServerConsoleFacade" name="ServerConsoleHttpEndpoint">
|
---|
190 | <identity>
|
---|
191 | <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
|
---|
192 | </identity>
|
---|
193 | </endpoint>
|
---|
194 | <endpoint address="http://services.heuristiclab.com/Hive-3.3/SlaveService.svc" binding="wsHttpBinding" behaviorConfiguration="SlaveServiceBehaviour" bindingConfiguration="SlaveHttpEndpoint" contract="SlaveFacade.ISlaveFacade" name="SlaveHttpEndpoint">
|
---|
195 | <identity>
|
---|
196 | <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
|
---|
197 | </identity>
|
---|
198 | </endpoint>
|
---|
199 | <endpoint address="net.tcp://services.heuristiclab.com:8000/Hive-3.3/SlaveService.svc" behaviorConfiguration="SlaveServiceBehaviour" binding="netTcpBinding" bindingConfiguration="SlaveTcpStreamedEndpoint" contract="SlaveFacade.ISlaveFacade" name="SlaveTcpStreamedEndpoint">
|
---|
200 | <identity>
|
---|
201 | <dns value="services.heuristiclab.com" />
|
---|
202 | </identity>
|
---|
203 | </endpoint>
|
---|
204 | <endpoint address="net.tcp://localhost:8000/SlaveConsoleService" binding="netTcpBinding" bindingConfiguration="SlaveConsoleTcpEndpoint" contract="SlaveConsoleService.ISlaveConsoleCommunicator" name="SlaveConsoleTcpEndpoint" />
|
---|
205 | </client>
|
---|
206 | <services>
|
---|
207 | <service behaviorConfiguration="ServiceBehaviour" name="HeuristicLab.Hive.Server.Core.SlaveFacade">
|
---|
208 | <endpoint address="" binding="wsHttpBinding" bindingConfiguration="HiveServerHttpBinding" name="SlaveHttpEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.ISlaveFacade" />
|
---|
209 | <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="" name="SlaveMexEndpoint" contract="IMetadataExchange" />
|
---|
210 | <endpoint binding="netTcpBinding" bindingConfiguration="TcpStreamedBinding" name="SlaveTcpStreamedEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.ISlaveFacade" />
|
---|
211 | <host>
|
---|
212 | <baseAddresses>
|
---|
213 | <add baseAddress="http://blade12.hpc.fh-hagenberg.at:9000/SlaveService" />
|
---|
214 | <add baseAddress="net.tcp://blade12.hpc.fh-hagenberg.at:9001/SlaveServiceStreamed" />
|
---|
215 | </baseAddresses>
|
---|
216 | </host>
|
---|
217 | </service>
|
---|
218 | <service behaviorConfiguration="ServiceBehaviour" name="HeuristicLab.Hive.Server.Core.ServerConsoleFacade">
|
---|
219 | <endpoint address="" binding="wsHttpBinding" bindingConfiguration="HiveServerHttpBinding" name="ServerConsoleHttpEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IServerConsoleFacade" />
|
---|
220 | <endpoint address="mex" binding="mexHttpBinding" name="ServerConsoleMexEndpoint" contract="IMetadataExchange" />
|
---|
221 | <host>
|
---|
222 | <baseAddresses>
|
---|
223 | <add baseAddress="http://blade12.hpc.fh-hagenberg.at:9000/ServerConsoleService" />
|
---|
224 | </baseAddresses>
|
---|
225 | </host>
|
---|
226 | </service>
|
---|
227 | <service behaviorConfiguration="ServiceBehaviour" name="HeuristicLab.Hive.Server.Core.ClientFacade">
|
---|
228 | <endpoint address="" binding="netTcpBinding" bindingConfiguration="TcpStreamedBinding" name="ClientTcpStreamedEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IClientFacade" />
|
---|
229 | <endpoint binding="wsHttpBinding" bindingConfiguration="HiveServerHttpBinding" name="ClientHttpEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IClientFacade" />
|
---|
230 | <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="" name="ClientHttpMexEndpoint" contract="IMetadataExchange" />
|
---|
231 | <host>
|
---|
232 | <baseAddresses>
|
---|
233 | <add baseAddress="net.tcp://blade12.hpc.fh-hagenberg.at:9001/ClientServiceStreamed" />
|
---|
234 | <add baseAddress="http://blade12.hpc.fh-hagenberg.at:9000/ClientService" />
|
---|
235 | </baseAddresses>
|
---|
236 | </host>
|
---|
237 | </service>
|
---|
238 | <service behaviorConfiguration="SlaveConsoleServiceBehaviour" name="HeuristicLab.Hive.Slave.Core.SlaveConsoleService.SlaveConsoleCommunicator">
|
---|
239 | <endpoint binding="netTcpBinding" bindingConfiguration="SlaveConsoleTcpBinding" name="SlaveConsoleTcpEndpoint" contract="HeuristicLab.Hive.Slave.Core.SlaveConsoleService.Interfaces.ISlaveConsoleCommunicator" />
|
---|
240 | <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" name="SlaveConsoleTcpMexEndpoint" contract="IMetadataExchange" />
|
---|
241 | <host>
|
---|
242 | <baseAddresses>
|
---|
243 | <add baseAddress="net.tcp://localhost:8000/SlaveConsoleService" />
|
---|
244 | </baseAddresses>
|
---|
245 | </host>
|
---|
246 | </service>
|
---|
247 | </services>
|
---|
248 | </system.serviceModel>
|
---|
249 | <runtime>
|
---|
250 | <gcServer enabled="true" />
|
---|
251 | </runtime>
|
---|
252 | <system.data>
|
---|
253 | <DbProviderFactories>
|
---|
254 | <remove invariant="System.Data.SQLite" />
|
---|
255 | <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
|
---|
256 | <remove invariant="System.Data.SqlServerCe.3.5" />
|
---|
257 | <add name="Microsoft SQL Server Compact Data Provider" invariant="System.Data.SqlServerCe.3.5" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
|
---|
258 | </DbProviderFactories>
|
---|
259 | </system.data>
|
---|
260 | <userSettings>
|
---|
261 | <HeuristicLab.PluginInfrastructure.Properties.Settings>
|
---|
262 | <setting name="UpdateLocation" serializeAs="String">
|
---|
263 | <value>http://services.heuristiclab.com/Deployment-3.3/Update.svc</value>
|
---|
264 | </setting>
|
---|
265 | <setting name="UpdateLocationUserName" serializeAs="String">
|
---|
266 | <value>anonymous</value>
|
---|
267 | </setting>
|
---|
268 | <setting name="UpdateLocationPassword" serializeAs="String">
|
---|
269 | <value>GetTheLab!</value>
|
---|
270 | </setting>
|
---|
271 | <setting name="UpdateLocationAdministrationAddress" serializeAs="String">
|
---|
272 | <value>http://services.heuristiclab.com/Deployment-3.3/Admin.svc</value>
|
---|
273 | </setting>
|
---|
274 | <setting name="ShowPluginUploadControls" serializeAs="String">
|
---|
275 | <value>False</value>
|
---|
276 | </setting>
|
---|
277 | </HeuristicLab.PluginInfrastructure.Properties.Settings>
|
---|
278 | <HeuristicLab.Optimizer.Properties.Settings>
|
---|
279 | <setting name="ShowStartPage" serializeAs="String">
|
---|
280 | <value>True</value>
|
---|
281 | </setting>
|
---|
282 | <setting name="ShowOperatorsSidebar" serializeAs="String">
|
---|
283 | <value>False</value>
|
---|
284 | </setting>
|
---|
285 | <setting name="ShowClipboard" serializeAs="String">
|
---|
286 | <value>True</value>
|
---|
287 | </setting>
|
---|
288 | <setting name="ShowMaximized" serializeAs="String">
|
---|
289 | <value>True</value>
|
---|
290 | </setting>
|
---|
291 | <setting name="CollapseClipboard" serializeAs="String">
|
---|
292 | <value>True</value>
|
---|
293 | </setting>
|
---|
294 | <setting name="CollapseOperatorsSidebar" serializeAs="String">
|
---|
295 | <value>False</value>
|
---|
296 | </setting>
|
---|
297 | </HeuristicLab.Optimizer.Properties.Settings>
|
---|
298 | <HeuristicLab.Persistence.Properties.Settings>
|
---|
299 | <setting name="CustomConfigurations" serializeAs="String">
|
---|
300 | <value />
|
---|
301 | </setting>
|
---|
302 | <setting name="CustomConfigurationsTypeCache" serializeAs="String">
|
---|
303 | <value />
|
---|
304 | </setting>
|
---|
305 | </HeuristicLab.Persistence.Properties.Settings>
|
---|
306 | <HeuristicLab.Hive.ExperimentManager.Properties.Settings>
|
---|
307 | <setting name="ResourceIds" serializeAs="String">
|
---|
308 | <value>HEAL</value>
|
---|
309 | </setting>
|
---|
310 | <setting name="HiveUsername" serializeAs="String">
|
---|
311 | <value>cneumuel</value>
|
---|
312 | </setting>
|
---|
313 | <setting name="HivePassword" serializeAs="String">
|
---|
314 | <value />
|
---|
315 | </setting>
|
---|
316 | </HeuristicLab.Hive.ExperimentManager.Properties.Settings>
|
---|
317 | <HeuristicLab.Hive.Slave.Core.Properties.Settings>
|
---|
318 | <setting name="ServerIP" serializeAs="String">
|
---|
319 | <value />
|
---|
320 | </setting>
|
---|
321 | <setting name="Guid" serializeAs="String">
|
---|
322 | <value>00000000-0000-0000-0000-000000000000</value>
|
---|
323 | </setting>
|
---|
324 | </HeuristicLab.Hive.Slave.Core.Properties.Settings>
|
---|
325 | <HeuristicLab.Hive.Slave.Communication.Properties.Settings>
|
---|
326 | <setting name="HiveUsername" serializeAs="String">
|
---|
327 | <value>hiveslave</value>
|
---|
328 | </setting>
|
---|
329 | <setting name="HivePassword" serializeAs="String">
|
---|
330 | <value>hiveslave</value>
|
---|
331 | </setting>
|
---|
332 | </HeuristicLab.Hive.Slave.Communication.Properties.Settings>
|
---|
333 | <HeuristicLab.Hive.Slave.Console.Properties.Settings>
|
---|
334 | <setting name="IpAdress" serializeAs="String">
|
---|
335 | <value>10.0.0.1</value>
|
---|
336 | </setting>
|
---|
337 | </HeuristicLab.Hive.Slave.Console.Properties.Settings>
|
---|
338 | </userSettings>
|
---|
339 | </configuration> |
---|