Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/05/15 17:37:03 (9 years ago)
Author:
ascheibe
Message:

#2280 merged r11623, r11631, r11634 into stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Services.Access/3.3/App.config

    r8040 r11920  
    22<configuration>
    33  <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"/>
    75  </connectionStrings>
    86  <system.web>
    97    <membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="20">
    108      <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"/>
    2411      </providers>
    2512    </membership>
    26     <authentication mode="Windows" />
     13    <authentication mode="Windows"/>
    2714    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
    2815      <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"/>
    3218      </providers>
    3319    </roleManager>
     
    4026      <wsHttpBinding>
    4127        <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"/>
    4329          <security mode="Message">
    44             <message clientCredentialType="UserName" />
     30            <message clientCredentialType="UserName"/>
    4531          </security>
    4632        </binding>
    4733      </wsHttpBinding>
    4834      <mexHttpBinding>
    49         <binding name="DefaultMexHttpBinding" />
     35        <binding name="DefaultMexHttpBinding"/>
    5036      </mexHttpBinding>
    5137    </bindings>
     
    5844      <endpointBehaviors>
    5945        <behavior name="DefaultEndpointBehavior">
    60           <dataContractSerializer maxItemsInObjectGraph="1000000" />
     46          <dataContractSerializer maxItemsInObjectGraph="1000000"/>
    6147        </behavior>
    6248      </endpointBehaviors>
     
    6450      <serviceBehaviors>
    6551        <behavior name="DefaultServiceBehavior">
    66           <serviceMetadata httpGetEnabled="true" />
    67           <serviceDebug includeExceptionDetailInFaults="true" />
     52          <serviceMetadata httpGetEnabled="true"/>
     53          <serviceDebug includeExceptionDetailInFaults="true"/>
    6854          <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"/>
    7357          </serviceCredentials>
    74           <serviceAuthorization principalPermissionMode="UseAspNetRoles"
    75                                 roleProviderName="AspNetSqlRoleProvider" />
     58          <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/>
    7659        </behavior>
    7760      </serviceBehaviors>
     
    8063    <services>
    8164      <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"/>
    8567        <host>
    8668          <baseAddresses>
    87             <add baseAddress="http://localhost:81/AccessService" />
     69            <add baseAddress="http://localhost:81/AccessService"/>
    8870          </baseAddresses>
    8971        </host>
     
    9173    </services>
    9274  </system.serviceModel>
    93 </configuration>
     75<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
  • stable/HeuristicLab.Services.Access/3.3/HeuristicLab.Services.Access-3.3.csproj

    r8600 r11920  
    1313    <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
    1414    <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
    15     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
     15    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    1616    <TargetFrameworkProfile>
    1717    </TargetFrameworkProfile>
     
    2626    <WarningLevel>4</WarningLevel>
    2727    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
     28    <Prefer32Bit>false</Prefer32Bit>
    2829  </PropertyGroup>
    2930  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
     
    3738    </DocumentationFile>
    3839    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
     40    <Prefer32Bit>false</Prefer32Bit>
    3941  </PropertyGroup>
    4042  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     
    4648    <ErrorReport>prompt</ErrorReport>
    4749    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
     50    <Prefer32Bit>false</Prefer32Bit>
    4851  </PropertyGroup>
    4952  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     
    5760    <ErrorReport>prompt</ErrorReport>
    5861    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
     62    <Prefer32Bit>false</Prefer32Bit>
    5963  </PropertyGroup>
    6064  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
     
    6670    <ErrorReport>prompt</ErrorReport>
    6771    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
     72    <Prefer32Bit>false</Prefer32Bit>
    6873  </PropertyGroup>
    6974  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
     
    7782    <ErrorReport>prompt</ErrorReport>
    7883    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
     84    <Prefer32Bit>false</Prefer32Bit>
    7985  </PropertyGroup>
    8086  <PropertyGroup>
     
    160166  </ProjectExtensions>
    161167  <PropertyGroup>
    162    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     168    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    163169set ProjectDir=$(ProjectDir)
    164170set SolutionDir=$(SolutionDir)
     
    166172
    167173call PreBuildEvent.cmd</PreBuildEvent>
    168 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     174    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
    169175export ProjectDir=$(ProjectDir)
    170176export SolutionDir=$(SolutionDir)
Note: See TracChangeset for help on using the changeset viewer.