Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/10/14 10:31:41 (9 years ago)
Author:
pfleck
Message:

#2269 Merged trunk. Updated .net version of ALPS plugin.

Location:
branches/ALPS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ALPS

  • branches/ALPS/HeuristicLab.Services.Deployment/3.3/App.config

    r7283 r11677  
    4141
    4242  <connectionStrings>
    43     <add name="HeuristicLab.Authentication"
    44          connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" />
    45     <add name="HeuristicLab.Services.Deployment.DataAccess.Properties.Settings.HeuristicLab_DeploymentConnectionString"
    46          connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Deployment" />
     43    <add name="HeuristicLab.Authentication" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
     44    <add name="HeuristicLab.Services.Deployment.DataAccess.Properties.Settings.HeuristicLab_DeploymentConnectionString" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Deployment"/>
    4745  </connectionStrings>
    4846
     
    5654
    5755  <system.web>
    58     <compilation debug="true" />
    59     <httpRuntime maxRequestLength="2097151" />
     56    <compilation debug="true"/>
     57    <httpRuntime maxRequestLength="2097151"/>
    6058    <membership defaultProvider="AspNetSqlMembershipProvider">
    6159      <providers>
    62         <clear />
    63         <add name="AspNetSqlMemberShipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
    64              connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" enablePasswordReset="false"
    65              enablePasswordRetrieval="false" passwordFormat="Hashed" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
    66              minRequiredNonalphanumericCharacters="0" minRequiredPasswordLength="8" />
     60        <clear/>
     61        <add name="AspNetSqlMemberShipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" enablePasswordReset="false" enablePasswordRetrieval="false" passwordFormat="Hashed" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" minRequiredNonalphanumericCharacters="0" minRequiredPasswordLength="8"/>
    6762      </providers>
    6863    </membership>
    69     <authentication mode="Windows" />
     64    <authentication mode="Windows"/>
    7065    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
    7166      <providers>
    72         <clear />
    73         <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
    74              connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
     67        <clear/>
     68        <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"/>
    7569      </providers>
    7670    </roleManager>
     
    8377      <wsHttpBinding>
    8478        <binding name="DefaultWsHttpBinding" maxBufferPoolSize="10000000" maxReceivedMessageSize="200000000">
    85           <readerQuotas maxDepth="1000" maxStringContentLength="200000000" maxArrayLength="200000000" maxBytesPerRead="200000000" maxNameTableCharCount="16000" />
     79          <readerQuotas maxDepth="1000" maxStringContentLength="200000000" maxArrayLength="200000000" maxBytesPerRead="200000000" maxNameTableCharCount="16000"/>
    8680          <security mode="Message">
    87             <message clientCredentialType="UserName" />
     81            <message clientCredentialType="UserName"/>
    8882          </security>
    8983        </binding>
    9084      </wsHttpBinding>
    9185      <mexHttpBinding>
    92         <binding name="DefaultMexHttpBinding" />
     86        <binding name="DefaultMexHttpBinding"/>
    9387      </mexHttpBinding>
    9488    </bindings>
     
    10195      <endpointBehaviors>
    10296        <behavior name="DefaultEndpointBehavior">
    103           <dataContractSerializer maxItemsInObjectGraph="1000000" />
     97          <dataContractSerializer maxItemsInObjectGraph="1000000"/>
    10498        </behavior>
    10599      </endpointBehaviors>
     
    107101      <serviceBehaviors>
    108102        <behavior name="DefaultServiceBehavior">
    109           <serviceMetadata httpGetEnabled="true" />
    110           <serviceDebug includeExceptionDetailInFaults="true" />
     103          <serviceMetadata httpGetEnabled="true"/>
     104          <serviceDebug includeExceptionDetailInFaults="true"/>
    111105          <serviceCredentials>
    112             <serviceCertificate findValue="localhost" storeLocation="LocalMachine"
    113                                 storeName="My" x509FindType="FindBySubjectName" />
    114             <userNameAuthentication userNamePasswordValidationMode="MembershipProvider"
    115                                     membershipProviderName="AspNetSqlMembershipProvider" />
     106            <serviceCertificate findValue="localhost" storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectName"/>
     107            <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider"/>
    116108          </serviceCredentials>
    117           <serviceAuthorization principalPermissionMode="UseAspNetRoles"
    118                                 roleProviderName="AspNetSqlRoleProvider" />
     109          <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/>
    119110        </behavior>
    120111      </serviceBehaviors>
     
    123114    <services>
    124115      <service name="HeuristicLab.Services.Deployment.UpdateService" behaviorConfiguration="DefaultServiceBehavior">
    125         <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange" />
    126         <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding"
    127                   contract="HeuristicLab.Services.Deployment.IUpdateService" />
     116        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
     117        <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.Deployment.IUpdateService"/>
    128118        <host>
    129119          <baseAddresses>
    130             <add baseAddress="http://localhost:8732/Design_Time_Addresses/Deployment-3.3/UpdateService" />
     120            <add baseAddress="http://localhost:8732/Design_Time_Addresses/Deployment-3.3/UpdateService"/>
    131121          </baseAddresses>
    132122        </host>
     
    134124
    135125      <service name="HeuristicLab.Services.Deployment.AdminService" behaviorConfiguration="DefaultServiceBehavior">
    136         <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange" />
    137         <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding"
    138                   contract="HeuristicLab.Services.Deployment.IAdminService" />
     126        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
     127        <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.Deployment.IAdminService"/>
    139128        <host>
    140129          <baseAddresses>
    141             <add baseAddress="http://localhost:8732/Design_Time_Addresses/Deployment-3.3/AdminService" />
     130            <add baseAddress="http://localhost:8732/Design_Time_Addresses/Deployment-3.3/AdminService"/>
    142131          </baseAddresses>
    143132        </host>
     
    145134    </services>
    146135  </system.serviceModel>
    147 </configuration>
     136<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
Note: See TracChangeset for help on using the changeset viewer.