Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/17 08:01:22 (7 years ago)
Author:
gkronber
Message:

#2650 added r14748 from trunk to branch (change set contains file renames lower case to upper case)

Location:
branches/symbreg-factors-2650
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/symbreg-factors-2650

  • 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"?>
    22<configuration>
    33  <configSections>
     
    66    </sectionGroup>
    77  </configSections>
     8 
    89  <appSettings>
    910    <add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;"/>
    1011  </appSettings>
     12 
    1113  <applicationSettings>
    1214    <HeuristicLab.Services.Hive.DataAccess.Settings>
     
    1921    </HeuristicLab.Services.Hive.DataAccess.Settings>
    2022  </applicationSettings>
     23 
    2124  <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" />
    2427  </connectionStrings>
    25   <!--
    26     For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
    2728
    28     The following attributes can be set on the <httpRuntime> tag.
    29       <system.Web>
    30         <httpRuntime targetFramework="4.5" />
    31       </system.Web>
    32   -->
    3329  <system.web>
    34     <authentication mode="Forms"/>
     30    <authentication mode="Forms" />
    3531    <compilation debug="true" targetFramework="4.5">
    3632      <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" />
    3834      </assemblies>
    3935    </compilation>
    40     <membership>
     36    <httpRuntime maxRequestLength="2097151"/>
     37    <membership defaultProvider="AspNetSqlMembershipProvider">
    4138      <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" />
    4443      </providers>
    4544    </membership>
    46     <roleManager enabled="true">
     45    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
    4746      <providers>
    48         <clear/>
     47        <clear />
    4948        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/>
    5049      </providers>
     
    5554      </controls>
    5655    </pages>
    57     <httpRuntime maxRequestLength="1048576"/>
    5856  </system.web>
     57 
    5958  <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>
    60115    <diagnostics performanceCounters="All">
    61116      <messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true" maxMessagesToLog="3000"/>
    62117    </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"/>
    110118  </system.serviceModel>
     119
    111120  <system.webServer>
    112121    <directoryBrowse enabled="true"/>
Note: See TracChangeset for help on using the changeset viewer.