Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5458 was 5264, checked in by ascheibe, 14 years ago

#1233 switch to .NET 4

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