Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.3/Tests/app.config @ 6747

Last change on this file since 6747 was 6747, checked in by ascheibe, 13 years ago

#1233 updated urls to Hive-3.3 in config files

File size: 11.9 KB
RevLine 
[6357]1<?xml version="1.0" encoding="utf-8"?>
[6000]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    </sectionGroup>
9  </configSections>
10  <connectionStrings>
[6712]11    <add name="HeuristicLab.Services.Hive.DataAccess.Properties.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" providerName="System.Data.SqlClient" />
[6000]12  </connectionStrings>
13  <!-- [chn] TODO: system.web should be located in HeuristicLab.Hive.Server.Core/app.config, but the ConfigMerger does not merge system.web (yet) -->
14  <system.web>
15    <membership>
16      <providers>
17        <clear />
18        <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" />
19      </providers>
20    </membership>
21    <roleManager enabled="true">
22      <providers>
23        <clear />
24        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
25      </providers>
26    </roleManager>
27  </system.web>
28  <system.serviceModel>
29    <behaviors>
30      <endpointBehaviors>
31        <behavior name="SerializationBehavior">
32          <dataContractSerializer maxItemsInObjectGraph="1000000" />
33        </behavior>
34      </endpointBehaviors>
35    </behaviors>
36    <bindings>
37      <wsHttpBinding>
38        <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">
39          <readerQuotas maxDepth="32" maxStringContentLength="32000" maxArrayLength="200000000" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
40          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
41          <security mode="Message">
42            <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
43            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true" />
44          </security>
45        </binding>
46        <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">
47          <readerQuotas maxDepth="32" maxStringContentLength="32000" maxArrayLength="200000000" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
48          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
49          <security mode="Message">
50            <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
51            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true" />
52          </security>
53        </binding>
[6357]54        <binding name="wsHttpBinding_IHiveService"
55                 closeTimeout="00:01:00"
56                 openTimeout="00:01:00"
57                 receiveTimeout="00:20:00"
58                 sendTimeout="00:20:00"
59                 bypassProxyOnLocal="false"
60                 transactionFlow="false"
61                 hostNameComparisonMode="StrongWildcard"
62                 maxBufferPoolSize="2147483647"
63                 maxReceivedMessageSize="2147483647"
64                 messageEncoding="Text"
65                 textEncoding="utf-8"
66                 useDefaultWebProxy="true"
67                 allowCookies="false">
68
69          <readerQuotas maxDepth="2147483647"
70                        maxStringContentLength="2147483647"
71                        maxArrayLength="2147483647"
72                        maxBytesPerRead="2147483647"
73                        maxNameTableCharCount="2147483647"/>
74          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
[6000]75          <security mode="Message">
[6357]76            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
77            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
[6000]78          </security>
79        </binding>
80      </wsHttpBinding>
81    </bindings>
82    <client>
83      <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">
84        <identity>
85          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
86        </identity>
87      </endpoint>
88      <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">
89        <identity>
90          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
91        </identity>
92      </endpoint>
[6747]93      <endpoint address="http://services.heuristiclab.com/Hive-3.3/HiveService.svc" binding="wsHttpBinding" bindingConfiguration="wsHttpBinding_IHiveService" contract="HeuristicLab.Clients.Hive.IHiveService" name="wsHttpBinding_IHiveService">
[6000]94        <identity>
[6357]95          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ=="/>
[6000]96        </identity>
97      </endpoint>
98    </client>
99  </system.serviceModel>
100  <runtime>
101    <gcServer enabled="true" />
102  </runtime>
103  <system.data>
104    <DbProviderFactories>
105      <remove invariant="System.Data.SQLite" />
106      <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
107      <remove invariant="System.Data.SqlServerCe.3.5" />
108      <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" />
109    </DbProviderFactories>
110  </system.data>
111  <userSettings>
112    <HeuristicLab.PluginInfrastructure.Properties.Settings>
113      <setting name="UpdateLocation" serializeAs="String">
114        <value>http://services.heuristiclab.com/Deployment-3.3/Update.svc</value>
115      </setting>
116      <setting name="UpdateLocationUserName" serializeAs="String">
117        <value>anonymous</value>
118      </setting>
119      <setting name="UpdateLocationPassword" serializeAs="String">
120        <value>GetTheLab!</value>
121      </setting>
122      <setting name="UpdateLocationAdministrationAddress" serializeAs="String">
123        <value>http://services.heuristiclab.com/Deployment-3.3/Admin.svc</value>
124      </setting>
125      <setting name="ShowPluginUploadControls" serializeAs="String">
126        <value>False</value>
127      </setting>
128    </HeuristicLab.PluginInfrastructure.Properties.Settings>
129    <HeuristicLab.Optimizer.Properties.Settings>
130      <setting name="ShowStartPage" serializeAs="String">
131        <value>True</value>
132      </setting>
133      <setting name="ShowOperatorsSidebar" serializeAs="String">
134        <value>False</value>
135      </setting>
136      <setting name="ShowClipboard" serializeAs="String">
137        <value>True</value>
138      </setting>
139      <setting name="ShowMaximized" serializeAs="String">
140        <value>True</value>
141      </setting>
142      <setting name="CollapseClipboard" serializeAs="String">
143        <value>True</value>
144      </setting>
145      <setting name="CollapseOperatorsSidebar" serializeAs="String">
146        <value>False</value>
147      </setting>
148    </HeuristicLab.Optimizer.Properties.Settings>
149    <HeuristicLab.Persistence.Properties.Settings>
150      <setting name="CustomConfigurations" serializeAs="String">
151        <value />
152      </setting>
153      <setting name="CustomConfigurationsTypeCache" serializeAs="String">
154        <value />
155      </setting>
156    </HeuristicLab.Persistence.Properties.Settings>
157  </userSettings>
158</configuration>
Note: See TracBrowser for help on using the repository browser.