Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.4/app.config @ 5095

Last change on this file since 5095 was 5095, checked in by cneumuel, 13 years ago

#1233

  • fixed config merge process
  • worked on hive server test setup
File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3  <system.diagnostics />
4  <connectionStrings>
5    <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
6  </connectionStrings>
7
8  <system.web>
9    <membership>
10      <providers>
11        <clear/>
12        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication"
13             enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
14             maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
15             applicationName="HeuristicLab.Authentication" />
16      </providers>
17    </membership>
18
19    <roleManager enabled="true">
20      <providers>
21        <clear/>
22        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
23      </providers>
24    </roleManager>
25  </system.web>
26
27  <system.serviceModel>
28    <diagnostics>
29      <messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true" maxMessagesToLog="3000" />
30    </diagnostics>
31    <bindings>
32      <wsHttpBinding>
33        <binding name="WSHttpBinding_IHiveService" receiveTimeout="00:10:00"
34          sendTimeout="00:10:00" maxBufferPoolSize="104857600" maxReceivedMessageSize="104857600">
35          <readerQuotas maxStringContentLength="104857600" maxArrayLength="104857600" />
36          <security mode="Message">
37            <transport clientCredentialType="Certificate"/>
38            <message clientCredentialType="UserName" />
39          </security>
40        </binding>
41      </wsHttpBinding>
42    </bindings>
43    <behaviors>
44      <serviceBehaviors>
45        <behavior name="ServiceBehaviour_IHiveService">
46          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="false" />
47          <serviceDebug httpHelpPageEnabled="true" includeExceptionDetailInFaults="true" />
48          <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider" />
49          <serviceCredentials>
50            <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" />
51            <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider" />
52          </serviceCredentials>
53          <serviceSecurityAudit auditLogLocation="Application" suppressAuditFailure="false" messageAuthenticationAuditLevel="SuccessOrFailure" />
54          <serviceThrottling maxConcurrentCalls="100" />
55        </behavior>
56      </serviceBehaviors>
57    </behaviors>
58    <services>
59      <service behaviorConfiguration="ServiceBehaviour_IHiveService" name="HeuristicLab.Services.Hive.HiveService">
60        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="" name="MexEndpoint" contract="IMetadataExchange" />
61        <endpoint binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.Common.ServiceContracts.IHiveService" />
62        <host>
63          <baseAddresses>
64            <add baseAddress="http://localhost:9000/Hive-3.4" />
65          </baseAddresses>
66        </host>
67      </service>
68    </services>
69
70  </system.serviceModel>
71
72</configuration>
Note: See TracBrowser for help on using the repository browser.