Changeset 12031 for branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/App.config
- Timestamp:
- 02/18/15 10:54:32 (10 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/App.config
r8040 r12031 2 2 <configuration> 3 3 <connectionStrings> 4 <add name="HeuristicLab.Authentication" 5 connectionString="Data Source=.;Initial Catalog=HeuristicLab.Authentication;Integrated Security=True" 6 providerName="System.Data.SqlClient"/> 4 <add name="HeuristicLab.Authentication" connectionString="Data Source=.;Initial Catalog=HeuristicLab.Authentication;Integrated Security=True" providerName="System.Data.SqlClient"/> 7 5 </connectionStrings> 8 6 <system.web> 9 7 <membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="20"> 10 8 <providers> 11 <clear /> 12 <add name="AspNetSqlMemberShipProvider" 13 type="System.Web.Security.SqlMembershipProvider" 14 connectionStringName="HeuristicLab.Authentication" 15 enablePasswordRetrieval="false" 16 enablePasswordReset="true" 17 requiresQuestionAndAnswer="false" 18 passwordFormat="Hashed" 19 applicationName="HeuristicLab.Authentication" 20 requiresUniqueEmail="false" 21 minRequiredPasswordLength="1" 22 minRequiredNonalphanumericCharacters="0" 23 maxInvalidPasswordAttempts="50" /> 9 <clear/> 10 <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"/> 24 11 </providers> 25 12 </membership> 26 <authentication mode="Windows" 13 <authentication mode="Windows"/> 27 14 <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider"> 28 15 <providers> 29 <clear /> 30 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 31 connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" /> 16 <clear/> 17 <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"/> 32 18 </providers> 33 19 </roleManager> … … 40 26 <wsHttpBinding> 41 27 <binding name="DefaultWsHttpBinding" maxBufferPoolSize="10000000" maxReceivedMessageSize="200000000"> 42 <readerQuotas maxDepth="1000" maxStringContentLength="16000" maxArrayLength="200000000" maxBytesPerRead="200000000" maxNameTableCharCount="16000" 28 <readerQuotas maxDepth="1000" maxStringContentLength="16000" maxArrayLength="200000000" maxBytesPerRead="200000000" maxNameTableCharCount="16000"/> 43 29 <security mode="Message"> 44 <message clientCredentialType="UserName" 30 <message clientCredentialType="UserName"/> 45 31 </security> 46 32 </binding> 47 33 </wsHttpBinding> 48 34 <mexHttpBinding> 49 <binding name="DefaultMexHttpBinding" 35 <binding name="DefaultMexHttpBinding"/> 50 36 </mexHttpBinding> 51 37 </bindings> … … 58 44 <endpointBehaviors> 59 45 <behavior name="DefaultEndpointBehavior"> 60 <dataContractSerializer maxItemsInObjectGraph="1000000" 46 <dataContractSerializer maxItemsInObjectGraph="1000000"/> 61 47 </behavior> 62 48 </endpointBehaviors> … … 64 50 <serviceBehaviors> 65 51 <behavior name="DefaultServiceBehavior"> 66 <serviceMetadata httpGetEnabled="true" 67 <serviceDebug includeExceptionDetailInFaults="true" 52 <serviceMetadata httpGetEnabled="true"/> 53 <serviceDebug includeExceptionDetailInFaults="true"/> 68 54 <serviceCredentials> 69 <serviceCertificate findValue="localhost" storeLocation="LocalMachine" 70 storeName="My" x509FindType="FindBySubjectName" /> 71 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" 72 membershipProviderName="AspNetSqlMembershipProvider" /> 55 <serviceCertificate findValue="localhost" storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectName"/> 56 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider"/> 73 57 </serviceCredentials> 74 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 75 roleProviderName="AspNetSqlRoleProvider" /> 58 <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/> 76 59 </behavior> 77 60 </serviceBehaviors> … … 80 63 <services> 81 64 <service name="HeuristicLab.Services.Access.AccessService" behaviorConfiguration="DefaultServiceBehavior"> 82 <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange" /> 83 <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" 84 contract="HeuristicLab.Services.Access.IAccessService" /> 65 <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/> 66 <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.Access.IAccessService"/> 85 67 <host> 86 68 <baseAddresses> 87 <add baseAddress="http://localhost:81/AccessService" 69 <add baseAddress="http://localhost:81/AccessService"/> 88 70 </baseAddresses> 89 71 </host> … … 91 73 </services> 92 74 </system.serviceModel> 93 < /configuration>75 <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
Note: See TracChangeset
for help on using the changeset viewer.