- Timestamp:
- 03/16/17 08:01:22 (8 years ago)
- Location:
- branches/symbreg-factors-2650
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/symbreg-factors-2650
- Property svn:mergeinfo changed
/trunk/sources merged: 14748
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Services.Hive.Web/Hive-3.3/Web.config
r11623 r14754 1 <?xml version="1.0" ?>1 <?xml version="1.0" encoding="utf-8"?> 2 2 <configuration> 3 3 <configSections> … … 6 6 </sectionGroup> 7 7 </configSections> 8 8 9 <appSettings> 9 10 <add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;"/> 10 11 </appSettings> 12 11 13 <applicationSettings> 12 14 <HeuristicLab.Services.Hive.DataAccess.Settings> … … 19 21 </HeuristicLab.Services.Hive.DataAccess.Settings> 20 22 </applicationSettings> 23 21 24 <connectionStrings> 22 <add name="HeuristicLab.Authentication" connectionString=" data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>23 <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString=" Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" providerName="System.Data.SqlClient"/>25 <add name="HeuristicLab.Authentication" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" /> 26 <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString=".\SQLEXPRESS;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=SSPI" /> 24 27 </connectionStrings> 25 <!--26 For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.27 28 28 The following attributes can be set on the <httpRuntime> tag.29 <system.Web>30 <httpRuntime targetFramework="4.5" />31 </system.Web>32 -->33 29 <system.web> 34 <authentication mode="Forms" />30 <authentication mode="Forms" /> 35 31 <compilation debug="true" targetFramework="4.5"> 36 32 <assemblies> 37 <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />33 <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 38 34 </assemblies> 39 35 </compilation> 40 <membership> 36 <httpRuntime maxRequestLength="2097151"/> 37 <membership defaultProvider="AspNetSqlMembershipProvider"> 41 38 <providers> 42 <clear/> 43 <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"/> 39 <clear /> 40 <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" 41 requiresQuestionAndAnswer="false" requiresUniqueEmail="false" applicationName="HeuristicLab.Authentication" minRequiredPasswordLength="8" 42 minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="5" /> 44 43 </providers> 45 44 </membership> 46 <roleManager enabled="true" >45 <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider"> 47 46 <providers> 48 <clear />47 <clear /> 49 48 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/> 50 49 </providers> … … 55 54 </controls> 56 55 </pages> 57 <httpRuntime maxRequestLength="1048576"/>58 56 </system.web> 57 59 58 <system.serviceModel> 59 <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/> 60 <services> 61 <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.Hive.HiveService"> 62 <endpoint binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" 63 name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService" /> 64 <endpoint address="net.tcp://localhost:8001/Hive-3.3/HiveService.svc" 65 binding="netTcpBinding" bindingConfiguration="NetBinding_IHiveService" 66 name="NetBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService" /> 67 <host> 68 <baseAddresses> 69 <add baseAddress="http://localhost:8000/Hive-3.3/HiveService.svc" /> 70 </baseAddresses> 71 </host> 72 </service> 73 </services> 74 <bindings> 75 <netTcpBinding> 76 <binding name="NetBinding_IHiveService" receiveTimeout="00:20:00" 77 sendTimeout="00:20:00" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" 78 maxReceivedMessageSize="2147483647" portSharingEnabled="true"> 79 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" 80 maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> 81 <security mode="TransportWithMessageCredential"> 82 <message clientCredentialType="UserName" /> 83 </security> 84 </binding> 85 </netTcpBinding> 86 <wsHttpBinding> 87 <binding name="WSHttpBinding_IHiveService" receiveTimeout="00:20:00" 88 sendTimeout="00:20:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"> 89 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" 90 maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> 91 <security> 92 <message clientCredentialType="UserName" /> 93 </security> 94 </binding> 95 </wsHttpBinding> 96 </bindings> 97 <behaviors> 98 <serviceBehaviors> 99 <behavior name="DefaultServiceBehavior"> 100 <serviceMetadata httpGetEnabled="true" /> 101 <serviceDebug includeExceptionDetailInFaults="true" /> 102 <serviceCredentials> 103 <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" /> 104 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" 105 membershipProviderName="AspNetSqlMembershipProvider" /> 106 </serviceCredentials> 107 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 108 roleProviderName="AspNetSqlRoleProvider" /> 109 <serviceSecurityAudit auditLogLocation="Application" suppressAuditFailure="false" 110 messageAuthenticationAuditLevel="SuccessOrFailure" /> 111 <serviceThrottling maxConcurrentCalls="100" /> 112 </behavior> 113 </serviceBehaviors> 114 </behaviors> 60 115 <diagnostics performanceCounters="All"> 61 116 <messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true" maxMessagesToLog="3000"/> 62 117 </diagnostics> 63 <bindings>64 <wsHttpBinding>65 <binding name="WSHttpBinding_IHiveService" messageEncoding="Text" receiveTimeout="00:35:00" sendTimeout="00:35:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">66 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>67 <security mode="Message">68 <transport clientCredentialType="Certificate"/>69 <message clientCredentialType="UserName"/>70 </security>71 </binding>72 </wsHttpBinding>73 <netTcpBinding>74 <binding name="NetTcpBinding_IHiveService" portSharingEnabled="true" receiveTimeout="00:35:00" sendTimeout="00:35:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">75 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>76 <security mode="TransportWithMessageCredential">77 <transport clientCredentialType="Certificate"/>78 <message clientCredentialType="UserName"/>79 </security>80 </binding>81 </netTcpBinding>82 </bindings>83 <behaviors>84 <serviceBehaviors>85 <behavior name="ServiceBehaviour_IHiveService">86 <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->87 <serviceMetadata httpGetEnabled="true" httpsGetEnabled="false"/>88 <!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->89 <serviceDebug httpHelpPageEnabled="true" includeExceptionDetailInFaults="true"/>90 <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/>91 <serviceCredentials>92 <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName"/>93 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider"/>94 </serviceCredentials>95 <serviceSecurityAudit auditLogLocation="Application" suppressAuditFailure="false" messageAuthenticationAuditLevel="SuccessOrFailure"/>96 <serviceThrottling maxConcurrentCalls="100"/>97 <dataContractSerializer maxItemsInObjectGraph="2147483647"/>98 </behavior>99 </serviceBehaviors>100 </behaviors>101 <services>102 <service behaviorConfiguration="ServiceBehaviour_IHiveService" name="HeuristicLab.Services.Hive.HiveService">103 <endpoint address="mexhttp" binding="mexHttpBinding" bindingConfiguration="" name="MexHttpEndpoint" contract="IMetadataExchange"/>104 <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" name="MexTcpEndpoint" contract="IMetadataExchange"/>105 <endpoint address="" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService"/>106 <endpoint address="net.tcp://services.heuristiclab.com/Hive-3.3/HiveService.svc" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IHiveService" name="NetBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService"/>107 </service>108 </services>109 <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>110 118 </system.serviceModel> 119 111 120 <system.webServer> 112 121 <directoryBrowse enabled="true"/>
Note: See TracChangeset
for help on using the changeset viewer.