Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 12691 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
Line 
1<?xml version="1.0"?>
2<configuration>
3  <connectionStrings>
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"/>
6  </connectionStrings>
7  <system.web>
8    <membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="20">
9      <providers>
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"/>
12      </providers>
13    </membership>
14    <authentication mode="Windows"/>
15    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
16      <providers>
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"/>
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">
29          <readerQuotas maxDepth="1000" maxStringContentLength="16000" maxArrayLength="200000000" maxBytesPerRead="200000000" maxNameTableCharCount="16000"/>
30          <security mode="Message">
31            <message clientCredentialType="UserName"/>
32          </security>
33        </binding>
34      </wsHttpBinding>
35      <mexHttpBinding>
36        <binding name="DefaultMexHttpBinding"/>
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">
47          <dataContractSerializer maxItemsInObjectGraph="1000000"/>
48        </behavior>
49      </endpointBehaviors>
50
51      <serviceBehaviors>
52        <behavior name="DefaultServiceBehavior">
53          <serviceMetadata httpGetEnabled="true"/>
54          <serviceDebug includeExceptionDetailInFaults="true"/>
55          <serviceCredentials>
56            <serviceCertificate findValue="localhost" storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectName"/>
57            <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider"/>
58          </serviceCredentials>
59          <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/>
60        </behavior>
61      </serviceBehaviors>
62    </behaviors>
63
64    <services>
65      <service name="HeuristicLab.Services.Access.AccessService" behaviorConfiguration="DefaultServiceBehavior">
66        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
67        <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.Access.IAccessService"/>
68        <host>
69          <baseAddresses>
70            <add baseAddress="http://localhost:81/AccessService"/>
71          </baseAddresses>
72        </host>
73      </service>
74    </services>
75  </system.serviceModel>
76<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
Note: See TracBrowser for help on using the repository browser.