- Timestamp:
- 02/18/15 10:54:32 (10 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/AdminService.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/App.config
r7283 r12031 41 41 42 42 <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"/> 47 45 </connectionStrings> 48 46 … … 56 54 57 55 <system.web> 58 <compilation debug="true" 59 <httpRuntime maxRequestLength="2097151" 56 <compilation debug="true"/> 57 <httpRuntime maxRequestLength="2097151"/> 60 58 <membership defaultProvider="AspNetSqlMembershipProvider"> 61 59 <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"/> 67 62 </providers> 68 63 </membership> 69 <authentication mode="Windows" 64 <authentication mode="Windows"/> 70 65 <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider"> 71 66 <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"/> 75 69 </providers> 76 70 </roleManager> … … 83 77 <wsHttpBinding> 84 78 <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"/> 86 80 <security mode="Message"> 87 <message clientCredentialType="UserName" 81 <message clientCredentialType="UserName"/> 88 82 </security> 89 83 </binding> 90 84 </wsHttpBinding> 91 85 <mexHttpBinding> 92 <binding name="DefaultMexHttpBinding" 86 <binding name="DefaultMexHttpBinding"/> 93 87 </mexHttpBinding> 94 88 </bindings> … … 101 95 <endpointBehaviors> 102 96 <behavior name="DefaultEndpointBehavior"> 103 <dataContractSerializer maxItemsInObjectGraph="1000000" 97 <dataContractSerializer maxItemsInObjectGraph="1000000"/> 104 98 </behavior> 105 99 </endpointBehaviors> … … 107 101 <serviceBehaviors> 108 102 <behavior name="DefaultServiceBehavior"> 109 <serviceMetadata httpGetEnabled="true" 110 <serviceDebug includeExceptionDetailInFaults="true" 103 <serviceMetadata httpGetEnabled="true"/> 104 <serviceDebug includeExceptionDetailInFaults="true"/> 111 105 <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"/> 116 108 </serviceCredentials> 117 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 118 roleProviderName="AspNetSqlRoleProvider" /> 109 <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/> 119 110 </behavior> 120 111 </serviceBehaviors> … … 123 114 <services> 124 115 <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"/> 128 118 <host> 129 119 <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"/> 131 121 </baseAddresses> 132 122 </host> … … 134 124 135 125 <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"/> 139 128 <host> 140 129 <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"/> 142 131 </baseAddresses> 143 132 </host> … … 145 134 </services> 146 135 </system.serviceModel> 147 < /configuration>136 <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration> -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/HeuristicLab.Services.Deployment-3.3.csproj
r8600 r12031 13 13 <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> 14 14 <StartArguments>/client:"WcfTestClient.exe"</StartArguments> 15 <TargetFrameworkVersion>v4. 0</TargetFrameworkVersion>15 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 16 16 <TargetFrameworkProfile> 17 17 </TargetFrameworkProfile> … … 32 32 <WarningLevel>4</WarningLevel> 33 33 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 34 <Prefer32Bit>false</Prefer32Bit> 34 35 </PropertyGroup> 35 36 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 41 42 <WarningLevel>4</WarningLevel> 42 43 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 44 <Prefer32Bit>false</Prefer32Bit> 43 45 </PropertyGroup> 44 46 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 50 52 <ErrorReport>prompt</ErrorReport> 51 53 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 54 <Prefer32Bit>false</Prefer32Bit> 52 55 </PropertyGroup> 53 56 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 59 62 <ErrorReport>prompt</ErrorReport> 60 63 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 64 <Prefer32Bit>false</Prefer32Bit> 61 65 </PropertyGroup> 62 66 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 68 72 <ErrorReport>prompt</ErrorReport> 69 73 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 74 <Prefer32Bit>false</Prefer32Bit> 70 75 </PropertyGroup> 71 76 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 77 82 <ErrorReport>prompt</ErrorReport> 78 83 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 84 <Prefer32Bit>false</Prefer32Bit> 79 85 </PropertyGroup> 80 86 <ItemGroup> … … 156 162 </ProjectExtensions> 157 163 <PropertyGroup> 158 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)164 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 159 165 set ProjectDir=$(ProjectDir) 160 166 set SolutionDir=$(SolutionDir) … … 162 168 163 169 call PreBuildEvent.cmd</PreBuildEvent> 164 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">170 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 165 171 export ProjectDir=$(ProjectDir) 166 172 export SolutionDir=$(SolutionDir) -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/IAdminService.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/IUpdateService.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/PluginDescription.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/PluginStore.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/ProductDescription.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/Properties/AssemblyInfo.cs.frame
r11174 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 32 32 [assembly: AssemblyCompany("")] 33 33 [assembly: AssemblyProduct("HeuristicLab")] 34 [assembly: AssemblyCopyright("(c) 2002-201 4HEAL")]34 [assembly: AssemblyCopyright("(c) 2002-2015 HEAL")] 35 35 [assembly: AssemblyTrademark("")] 36 36 [assembly: AssemblyCulture("")] … … 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3.1 0.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.11.$WCREV$")] -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/Properties/Settings.Designer.cs
r4065 r12031 2 2 // <auto-generated> 3 3 // This code was generated by a tool. 4 // Runtime Version:4.0.30319. 14 // Runtime Version:4.0.30319.34014 5 5 // 6 6 // Changes to this file may cause incorrect behavior and will be lost if … … 13 13 14 14 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "1 0.0.0.0")]15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")] 16 16 internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 17 -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/Tests/HeuristicLab.Services.Deployment-3.3.Tests.csproj
r7155 r12031 11 11 <RootNamespace>HeuristicLab.Services.Deployment_3._3.Tests</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Services.Deployment_3._3.Tests</AssemblyName> 13 <TargetFrameworkVersion>v4. 0</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> 15 15 <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> … … 33 33 <UseApplicationTrust>false</UseApplicationTrust> 34 34 <BootstrapperEnabled>true</BootstrapperEnabled> 35 <TargetFrameworkProfile /> 35 36 </PropertyGroup> 36 37 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 43 44 <WarningLevel>4</WarningLevel> 44 45 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 46 <Prefer32Bit>false</Prefer32Bit> 45 47 </PropertyGroup> 46 48 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 52 54 <WarningLevel>4</WarningLevel> 53 55 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 56 <Prefer32Bit>false</Prefer32Bit> 54 57 </PropertyGroup> 55 58 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 61 64 <ErrorReport>prompt</ErrorReport> 62 65 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 66 <Prefer32Bit>false</Prefer32Bit> 63 67 </PropertyGroup> 64 68 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 70 74 <ErrorReport>prompt</ErrorReport> 71 75 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 76 <Prefer32Bit>false</Prefer32Bit> 72 77 </PropertyGroup> 73 78 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 79 84 <ErrorReport>prompt</ErrorReport> 80 85 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 86 <Prefer32Bit>false</Prefer32Bit> 81 87 </PropertyGroup> 82 88 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 88 94 <ErrorReport>prompt</ErrorReport> 89 95 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 96 <Prefer32Bit>false</Prefer32Bit> 90 97 </PropertyGroup> 91 98 <ItemGroup> -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/Tests/PluginStoreTest.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/Tests/Properties/AssemblyInfo.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Deployment/3.3/UpdateService.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab.
Note: See TracChangeset
for help on using the changeset viewer.