Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Services.OKB/3.3/app.config @ 11920

Last change on this file since 11920 was 11920, checked in by ascheibe, 9 years ago

#2280 merged r11623, r11631, r11634 into stable

File size: 4.6 KB
RevLine 
[8049]1<?xml version="1.0"?>
2<configuration>
3  <connectionStrings>
[11920]4    <add name="HeuristicLab.Authentication" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
5    <add name="HeuristicLab.Services.OKB.DataAccess.Properties.Settings.OKBConnectionString" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.OKB"/>
[8049]6  </connectionStrings>
7
8  <system.web>
[11920]9    <compilation debug="true"/>
[8049]10    <membership>
11      <providers>
[11920]12        <clear/>
13        <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"/>
[8049]14      </providers>
15    </membership>
16    <roleManager enabled="true">
17      <providers>
[11920]18        <clear/>
19        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/>
[8049]20      </providers>
21    </roleManager>
22  </system.web>
23
24  <system.serviceModel>
25    <bindings>
26      <mexHttpBinding>
[11920]27        <binding name="DefaultMexHttpBinding"/>
[8049]28      </mexHttpBinding>
29      <wsHttpBinding>
30        <binding name="DefaultWsHttpBinding" maxReceivedMessageSize="200000000">
[11920]31          <readerQuotas maxArrayLength="200000000" maxBytesPerRead="200000000"/>
[8049]32          <security mode="Message">
[11920]33            <message clientCredentialType="UserName"/>
[8049]34          </security>
35        </binding>
36      </wsHttpBinding>
37    </bindings>
38
39    <behaviors>
40      <serviceBehaviors>
41        <behavior name="DefaultServiceBehavior">
[11920]42          <serviceMetadata httpGetEnabled="true"/>
43          <serviceDebug includeExceptionDetailInFaults="true"/>
44          <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/>
[8049]45          <serviceCredentials>
[11920]46            <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName"/>
47            <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider"/>
[8049]48          </serviceCredentials>
[11920]49          <dataContractSerializer maxItemsInObjectGraph="6553600"/>
[8049]50        </behavior>
51      </serviceBehaviors>
52    </behaviors>
53
54    <services>     
55      <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Administration.AdministrationService">
[11920]56        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
57        <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.OKB.Administration.IAdministrationService"/>
[8049]58        <host>
59          <baseAddresses>
[11920]60            <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdministrationService"/>
[8049]61          </baseAddresses>
62        </host>
63      </service>
64      <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.RunCreation.RunCreationService">
[11920]65        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
66        <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.OKB.RunCreation.IRunCreationService"/>
[8049]67        <host>
68          <baseAddresses>
[11920]69            <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/RunCreationService"/>
[8049]70          </baseAddresses>
71        </host>
72      </service>
73      <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Query.QueryService">
[11920]74        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
75        <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.OKB.Query.IQueryService"/>
[8049]76        <host>
77          <baseAddresses>
[11920]78            <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/QueryService"/>
[8049]79          </baseAddresses>
80        </host>
81      </service>
82    </services>
83  </system.serviceModel>
84  <startup>
[11920]85    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
[8049]86  </startup>
[11920]87</configuration>
Note: See TracBrowser for help on using the repository browser.