Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Access/3.3/App.config @ 13229

Last change on this file since 13229 was 12691, checked in by dglaser, 9 years ago

#2388:

HeuristicLab.Services.Access:
HeuristicLab.Services.Access.DataAccess:

  • Changed connection strings and certificates for local usage

HeuristicLab.Services.Hive.DataAccess:

  • Added compiled queries for frequently used queries
  • Integrated string queries from OptimizedHiveDao

HeuristicLab.Services.Hive:

  • Added NewHeartbeatManager.cs
  • Added NewRoundRobinTaskScheduler.cs
  • Added PerformanceLogger
  • Updated AuthoriziationManager
  • Updated NewHiveService
    • Added Regions
    • Implemented missing methods
    • Improved performance of several queries

HeuristicLab.Services.WebApp.Status:

  • Fixed a bug which caused an error when calculating the average waiting time.
File size: 4.2 KB
RevLine 
[8040]1<?xml version="1.0"?>
2<configuration>
3  <connectionStrings>
[12691]4    <add name="HeuristicLab.Authentication" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
5    <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" providerName="System.Data.SqlClient"/>
[8040]6  </connectionStrings>
7  <system.web>
8    <membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="20">
9      <providers>
[11623]10        <clear/>
11        <add name="AspNetSqlMemberShipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" passwordFormat="Hashed" applicationName="HeuristicLab.Authentication" requiresUniqueEmail="false" minRequiredPasswordLength="1" minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="50"/>
[8040]12      </providers>
13    </membership>
[11623]14    <authentication mode="Windows"/>
[8040]15    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
16      <providers>
[11623]17        <clear/>
18        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/>
[8040]19      </providers>
20    </roleManager>
21  </system.web>
22
23  <!-- When deploying the service library project, the content of the config file must be added to the host's
24  app.config file. System.Configuration does not support config files for libraries. -->
25  <system.serviceModel>
26    <bindings>
27      <wsHttpBinding>
28        <binding name="DefaultWsHttpBinding" maxBufferPoolSize="10000000" maxReceivedMessageSize="200000000">
[11623]29          <readerQuotas maxDepth="1000" maxStringContentLength="16000" maxArrayLength="200000000" maxBytesPerRead="200000000" maxNameTableCharCount="16000"/>
[8040]30          <security mode="Message">
[11623]31            <message clientCredentialType="UserName"/>
[8040]32          </security>
33        </binding>
34      </wsHttpBinding>
35      <mexHttpBinding>
[11623]36        <binding name="DefaultMexHttpBinding"/>
[8040]37      </mexHttpBinding>
38    </bindings>
39
40    <diagnostics performanceCounters="Default">
41      <!--<messageLogging logMalformedMessages="false" logMessagesAtTransportLevel="false" />-->
42    </diagnostics>
43
44    <behaviors>
45      <endpointBehaviors>
46        <behavior name="DefaultEndpointBehavior">
[11623]47          <dataContractSerializer maxItemsInObjectGraph="1000000"/>
[8040]48        </behavior>
49      </endpointBehaviors>
50
51      <serviceBehaviors>
52        <behavior name="DefaultServiceBehavior">
[11623]53          <serviceMetadata httpGetEnabled="true"/>
54          <serviceDebug includeExceptionDetailInFaults="true"/>
[8040]55          <serviceCredentials>
[11623]56            <serviceCertificate findValue="localhost" storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectName"/>
57            <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider"/>
[8040]58          </serviceCredentials>
[11623]59          <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/>
[8040]60        </behavior>
61      </serviceBehaviors>
62    </behaviors>
63
64    <services>
65      <service name="HeuristicLab.Services.Access.AccessService" behaviorConfiguration="DefaultServiceBehavior">
[11623]66        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
67        <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.Access.IAccessService"/>
[8040]68        <host>
69          <baseAddresses>
[11623]70            <add baseAddress="http://localhost:81/AccessService"/>
[8040]71          </baseAddresses>
72        </host>
73      </service>
74    </services>
75  </system.serviceModel>
[11623]76<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
Note: See TracBrowser for help on using the repository browser.