[14748] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
[8040] | 2 | <configuration>
|
---|
| 3 | <connectionStrings>
|
---|
[17059] | 4 | <add name="HeuristicLab.Authentication" connectionString="Data Source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" />
|
---|
[8040] | 5 | </connectionStrings>
|
---|
[14748] | 6 |
|
---|
[8040] | 7 | <system.web>
|
---|
[14748] | 8 | <membership defaultProvider="AspNetSqlMembershipProvider">
|
---|
[8040] | 9 | <providers>
|
---|
[14748] | 10 | <clear />
|
---|
| 11 | <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication"
|
---|
| 12 | requiresQuestionAndAnswer="false" passwordFormat="Hashed" applicationName="HeuristicLab.Authentication" minRequiredPasswordLength="8"
|
---|
| 13 | minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="5" />
|
---|
[8040] | 14 | </providers>
|
---|
| 15 | </membership>
|
---|
| 16 | <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
|
---|
| 17 | <providers>
|
---|
[14748] | 18 | <clear />
|
---|
| 19 | <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
|
---|
[8040] | 20 | </providers>
|
---|
| 21 | </roleManager>
|
---|
| 22 | </system.web>
|
---|
| 23 |
|
---|
| 24 | <system.serviceModel>
|
---|
[14748] | 25 | <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
|
---|
| 26 | <services>
|
---|
| 27 | <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.Access.AccessService">
|
---|
| 28 | <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding"
|
---|
| 29 | contract="HeuristicLab.Services.Access.IAccessService" />
|
---|
| 30 | <host>
|
---|
| 31 | <baseAddresses>
|
---|
[17059] | 32 | <add baseAddress="http://services.heuristiclab.com/AccessService-3.3/AccessService.svc" />
|
---|
[14748] | 33 | </baseAddresses>
|
---|
| 34 | </host>
|
---|
| 35 | </service>
|
---|
| 36 | </services>
|
---|
[8040] | 37 | <behaviors>
|
---|
| 38 | <serviceBehaviors>
|
---|
| 39 | <behavior name="DefaultServiceBehavior">
|
---|
[14748] | 40 | <serviceMetadata httpGetEnabled="true" />
|
---|
| 41 | <serviceDebug includeExceptionDetailInFaults="true" />
|
---|
[8040] | 42 | <serviceCredentials>
|
---|
[17059] | 43 | <serviceCertificate findValue="services.heuristiclab.com" x509FindType="FindBySubjectName" />
|
---|
[14748] | 44 | <userNameAuthentication userNamePasswordValidationMode="MembershipProvider"
|
---|
| 45 | membershipProviderName="AspNetSqlMembershipProvider" />
|
---|
[8040] | 46 | </serviceCredentials>
|
---|
[14748] | 47 | <serviceAuthorization principalPermissionMode="UseAspNetRoles"
|
---|
| 48 | roleProviderName="AspNetSqlRoleProvider" />
|
---|
[8040] | 49 | </behavior>
|
---|
| 50 | </serviceBehaviors>
|
---|
| 51 | </behaviors>
|
---|
[14748] | 52 | <bindings>
|
---|
| 53 | <wsHttpBinding>
|
---|
| 54 | <binding name="DefaultWsHttpBinding" maxBufferPoolSize="2147483647"
|
---|
| 55 | maxReceivedMessageSize="2147483647">
|
---|
| 56 | <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
|
---|
| 57 | maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
|
---|
| 58 | <security>
|
---|
| 59 | <message clientCredentialType="UserName" />
|
---|
| 60 | </security>
|
---|
| 61 | </binding>
|
---|
| 62 | </wsHttpBinding>
|
---|
| 63 | </bindings>
|
---|
| 64 | </system.serviceModel>
|
---|
[8040] | 65 |
|
---|
[14748] | 66 | <startup>
|
---|
| 67 | <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
---|
| 68 | </startup>
|
---|
| 69 | </configuration>
|
---|