Changeset 4298 for trunk/sources/HeuristicLab.Services.OKB/3.3/app.config
- Timestamp:
- 08/24/10 02:37:56 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.OKB/3.3/app.config
r4279 r4298 1 1 <?xml version="1.0"?> 2 2 <configuration> 3 <connectionStrings> 4 <add name="HeuristicLab.Authentication" 5 connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/> 6 <add name="HeuristicLab.Services.OKB.DataAccess.Properties.Settings.OKBConnectionString" 7 connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.OKB;Integrated Security=SSPI" 8 providerName="System.Data.SqlClient" /> 9 </connectionStrings> 10 11 <system.web> 12 <authentication mode="Forms" /> 13 <compilation debug="true" targetFramework="4.0" /> 14 15 <membership> 16 <providers> 17 <clear/> 18 <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" 19 enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" 20 maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" 21 applicationName="HeuristicLab.Authentication" /> 22 </providers> 23 </membership> 24 25 <roleManager enabled="true"> 26 <providers> 27 <clear/> 28 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" /> 29 </providers> 30 </roleManager> 31 </system.web> 32 3 33 <system.serviceModel> 4 34 <bindings> 5 35 <netTcpBinding> 6 36 <binding name="LargeMessages" openTimeout="00:00:30" receiveTimeout="00:00:30" sendTimeout="00:00:30" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"> 7 <security mode=" Transport">8 < transport clientCredentialType="Certificate" protectionLevel="EncryptAndSign"/>37 <security mode="Message"> 38 <message clientCredentialType="UserName"/> 9 39 </security> 10 40 <readerQuotas maxArrayLength="2147483647"/> … … 13 43 </netTcpBinding> 14 44 </bindings> 45 15 46 <client/> 47 16 48 <behaviors> 17 49 <serviceBehaviors> … … 19 51 <serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8000/OKB/RunnerMex"/> 20 52 <serviceDebug includeExceptionDetailInFaults="true"/> 53 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 54 roleProviderName="AspNetSqlRoleProvider" /> 55 <serviceCredentials> 56 <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" /> 57 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" 58 membershipProviderName="AspNetSqlMembershipProvider"/> 59 </serviceCredentials> 21 60 </behavior> 22 61 <behavior name="AdminServiceBehaviour"> 23 62 <serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8000/OKB/AdminMex"/> 24 63 <serviceDebug includeExceptionDetailInFaults="true"/> 64 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 65 roleProviderName="AspNetSqlRoleProvider" /> 66 <serviceCredentials> 67 <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" /> 68 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" 69 membershipProviderName="AspNetSqlMembershipProvider"/> 70 </serviceCredentials> 25 71 </behavior> 26 72 <behavior name="TableServiceBehaviour"> 27 73 <serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8000/OKB/TableMex"/> 28 74 <serviceDebug includeExceptionDetailInFaults="true"/> 75 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 76 roleProviderName="AspNetSqlRoleProvider" /> 77 <serviceCredentials> 78 <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" /> 79 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" 80 membershipProviderName="AspNetSqlMembershipProvider"/> 81 </serviceCredentials> 29 82 </behavior> 30 83 <behavior name="QueryServiceBehaviour"> 31 84 <serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8000/OKB/QueryMex"/> 32 85 <serviceDebug includeExceptionDetailInFaults="true"/> 86 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 87 roleProviderName="AspNetSqlRoleProvider" /> 88 <serviceCredentials> 89 <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" /> 90 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" 91 membershipProviderName="AspNetSqlMembershipProvider"/> 92 </serviceCredentials> 33 93 </behavior> 34 94 <behavior name="DataServiceBehaviour"> 35 95 <serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8000/OKB/DataMex"/> 36 96 <serviceDebug includeExceptionDetailInFaults="true"/> 97 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 98 roleProviderName="AspNetSqlRoleProvider" /> 99 <serviceCredentials> 100 <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" /> 101 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" 102 membershipProviderName="AspNetSqlMembershipProvider"/> 103 </serviceCredentials> 37 104 </behavior> 38 105 </serviceBehaviors> 39 106 </behaviors> 107 40 108 <services> 41 <service behaviorConfiguration="RunnerServiceBehaviour" name="HeuristicLab. OKB.RunnerService">109 <service behaviorConfiguration="RunnerServiceBehaviour" name="HeuristicLab.Services.OKB.RunnerService"> 42 110 <endpoint address="http://localhost:8000/OKB/RunnerMex" binding="mexHttpBinding" contract="IMetadataExchange"/> 43 <endpoint address="net.tcp://localhost:8001/OKB/RunnerService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab.OKB.IRunnerService"> 44 <identity> 45 <dns value="HEAL"/> 46 </identity> 111 <endpoint address="net.tcp://localhost:8001/OKB/RunnerService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab.Services.OKB.IRunnerService"> 47 112 </endpoint> 48 113 </service> 49 <service behaviorConfiguration="AdminServiceBehaviour" name="HeuristicLab. OKB.AdminService">114 <service behaviorConfiguration="AdminServiceBehaviour" name="HeuristicLab.Services.OKB.AdminService"> 50 115 <endpoint address="http://localhost:8000/OKB/AdminMex" binding="mexHttpBinding" contract="IMetadataExchange"/> 51 <endpoint address="net.tcp://localhost:8001/OKB/AdminService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab. OKB.IAdminService"/>116 <endpoint address="net.tcp://localhost:8001/OKB/AdminService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab.Services.OKB.IAdminService"/> 52 117 </service> 53 <service behaviorConfiguration="TableServiceBehaviour" name="HeuristicLab. OKB.TableService">118 <service behaviorConfiguration="TableServiceBehaviour" name="HeuristicLab.Services.OKB.TableService"> 54 119 <endpoint address="http://localhost:8000/OKB/TableMex" binding="mexHttpBinding" contract="IMetadataExchange"/> 55 <endpoint address="net.tcp://localhost:8001/OKB/TableService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab. OKB.ITableService"/>120 <endpoint address="net.tcp://localhost:8001/OKB/TableService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab.Services.OKB.ITableService"/> 56 121 </service> 57 <service behaviorConfiguration="QueryServiceBehaviour" name="HeuristicLab. OKB.QueryService">122 <service behaviorConfiguration="QueryServiceBehaviour" name="HeuristicLab.Services.OKB.QueryService"> 58 123 <endpoint address="http://localhost:8000/OKB/QueryMex" binding="mexHttpBinding" contract="IMetadataExchange"/> 59 <endpoint address="net.tcp://localhost:8001/OKB/QueryService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab. OKB.IQueryService"/>124 <endpoint address="net.tcp://localhost:8001/OKB/QueryService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab.Services.OKB.IQueryService"/> 60 125 </service> 61 <service behaviorConfiguration="DataServiceBehaviour" name="HeuristicLab. OKB.DataService">126 <service behaviorConfiguration="DataServiceBehaviour" name="HeuristicLab.Services.OKB.DataService"> 62 127 <endpoint address="http://localhost:8000/OKB/DataMex" binding="mexHttpBinding" contract="IMetadataExchange"/> 63 <endpoint address="net.tcp://localhost:8001/OKB/DataService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab. OKB.IDataService"/>128 <endpoint address="net.tcp://localhost:8001/OKB/DataService" binding="netTcpBinding" bindingConfiguration="LargeMessages" contract="HeuristicLab.Services.OKB.IDataService"/> 64 129 </service> 65 130 </services>
Note: See TracChangeset
for help on using the changeset viewer.