Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1001


Ignore:
Timestamp:
12/17/08 14:12:01 (15 years ago)
Author:
kgrading
Message:

refactoring for #438

Location:
trunk/sources
Files:
10 added
3 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Communication/WcfService.cs

    r993 r1001  
    3737    public void Connect() {
    3838      try {
     39        proxy = null;
    3940        if (proxy == null) {
    4041          proxy = new ClientCommunicatorClient(
  • trunk/sources/HeuristicLab.Hive.Client.Console/app.config

    r953 r1001  
    3131                contract="ClientService.IClientConsoleCommunicator" name="NetTcpBinding_IClientConsoleCommunicator">
    3232                <identity>
    33                     <userPrincipalName value="mse08004@fhs-hagenberg.ac.at" />
     33                    <userPrincipalName value="mse08003@fhs-hagenberg.ac.at" />
    3434                </identity>
    3535            </endpoint>
  • trunk/sources/HeuristicLab.Hive.Client.Core/Core.cs

    r997 r1001  
    4242using HeuristicLab.Hive.Client.Core.ConfigurationManager;
    4343using HeuristicLab.Hive.Client.Communication.ServerService;
     44using HeuristicLab.Hive.JobBase;
    4445
    4546
     
    144145    void wcfService_PullJobCompleted(object sender, PullJobCompletedEventArgs e) {
    145146      if (e.Result.StatusMessage != ApplicationConstants.RESPONSE_COMMUNICATOR_NO_JOBS_LEFT) {
    146         bool sandboxed = true;
     147        bool sandboxed = false;
    147148
    148149        PluginManager.Manager.Initialize();
  • trunk/sources/HeuristicLab.Hive.Client.Core/HeuristicLab.Hive.Client.Core.csproj

    r944 r1001  
    120120      <Name>HeuristicLab.Hive.Contracts</Name>
    121121    </ProjectReference>
     122    <ProjectReference Include="..\HeuristicLab.Hive.Job\HeuristicLab.Hive.JobBase.csproj">
     123      <Project>{21187322-52DD-4243-80A4-A85F0263E63B}</Project>
     124      <Name>HeuristicLab.Hive.JobBase</Name>
     125    </ProjectReference>
    122126    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
    123127      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
  • trunk/sources/HeuristicLab.Hive.Client.ExecutionEngine/Executor.cs

    r908 r1001  
    2828using System.Xml.Serialization;
    2929using System.IO;
     30using HeuristicLab.Core;
     31using HeuristicLab.Hive.JobBase;
    3032using HeuristicLab.Hive.Contracts;
    31 using HeuristicLab.Core;
    3233
    3334namespace HeuristicLab.Hive.Client.ExecutionEngine {
  • trunk/sources/HeuristicLab.Hive.Client.ExecutionEngine/HeuristicLab.Hive.Client.ExecutionEngine.csproj

    r858 r1001  
    8181      <Name>HeuristicLab.Hive.Client.Common</Name>
    8282    </ProjectReference>
     83    <ProjectReference Include="..\HeuristicLab.Hive.Client.Communication\HeuristicLab.Hive.Client.Communication.csproj">
     84      <Project>{AEB51212-CDBA-4FC6-A2EE-02359AA53ECE}</Project>
     85      <Name>HeuristicLab.Hive.Client.Communication</Name>
     86    </ProjectReference>
    8387    <ProjectReference Include="..\HeuristicLab.Hive.Contracts\HeuristicLab.Hive.Contracts.csproj">
    8488      <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project>
    8589      <Name>HeuristicLab.Hive.Contracts</Name>
     90    </ProjectReference>
     91    <ProjectReference Include="..\HeuristicLab.Hive.Job\HeuristicLab.Hive.JobBase.csproj">
     92      <Project>{21187322-52DD-4243-80A4-A85F0263E63B}</Project>
     93      <Name>HeuristicLab.Hive.JobBase</Name>
    8694    </ProjectReference>
    8795    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
  • trunk/sources/HeuristicLab.Hive.Contracts/HeuristicLab.Hive.Contracts.csproj

    r995 r1001  
    8686    <Compile Include="BusinessObjects\UserGroup.cs" />
    8787    <Compile Include="ResponseObject.cs" />
    88     <Compile Include="Interfaces\IJob.cs" />
    8988    <Compile Include="Interfaces\IClientManager.cs" />
    9089    <Compile Include="Interfaces\IJobManager.cs" />
     
    9392    <Compile Include="Interfaces\ITransactionManager.cs" />
    9493    <Compile Include="Interfaces\IUserRoleManager.cs" />
    95     <Compile Include="JobBase.cs" />
    9694    <Compile Include="MessageContainer.cs" />
    9795    <Compile Include="ResponseJob.cs" />
     
    103101    <Compile Include="ResponseList.cs" />
    104102    <Compile Include="ResponseResultReceived.cs" />
    105     <Compile Include="TestJob.cs" />
    106103  </ItemGroup>
    107104  <ItemGroup>
  • trunk/sources/HeuristicLab.Hive.Server.Core/ClientCommunicator.cs

    r995 r1001  
    1010using System.Resources;
    1111using System.Reflection;
     12using HeuristicLab.Hive.JobBase;
    1213
    1314namespace HeuristicLab.Hive.Server.Core {
  • trunk/sources/HeuristicLab.Hive.Server.Core/HeuristicLab.Hive.Server.Core.csproj

    r1000 r1001  
    100100      <Name>HeuristicLab.Hive.Contracts</Name>
    101101    </ProjectReference>
     102    <ProjectReference Include="..\HeuristicLab.Hive.Job\HeuristicLab.Hive.JobBase.csproj">
     103      <Project>{21187322-52DD-4243-80A4-A85F0263E63B}</Project>
     104      <Name>HeuristicLab.Hive.JobBase</Name>
     105    </ProjectReference>
    102106    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
    103107      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
  • trunk/sources/HeuristicLab.sln

    r944 r1001  
    44Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{96396439-A764-4022-A8D2-BE021449B8D1}"
    55  ProjectSection(SolutionItems) = preProject
    6     ConfigMerger.exe = ConfigMerger.exe
    76    ..\documentation\License\gpl-3.0.txt = ..\documentation\License\gpl-3.0.txt
    87    PreBuildEvent.cmd = PreBuildEvent.cmd
     
    130129EndProject
    131130Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Hive.Server.Console", "HeuristicLab.Hive.Server.Console\HeuristicLab.Hive.Server.Console.csproj", "{42A1D075-6C12-4DD9-B0C2-C6F5210A8119}"
     131EndProject
     132Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Hive.JobBase", "HeuristicLab.Hive.Job\HeuristicLab.Hive.JobBase.csproj", "{21187322-52DD-4243-80A4-A85F0263E63B}"
    132133EndProject
    133134Global
     
    10111012    {42A1D075-6C12-4DD9-B0C2-C6F5210A8119}.Visualization Debug|x86.ActiveCfg = Debug|x86
    10121013    {42A1D075-6C12-4DD9-B0C2-C6F5210A8119}.Visualization Debug|x86.Build.0 = Debug|x86
     1014    {21187322-52DD-4243-80A4-A85F0263E63B}.CEDMA Debug|Any CPU.ActiveCfg = Debug|Any CPU
     1015    {21187322-52DD-4243-80A4-A85F0263E63B}.CEDMA Debug|Any CPU.Build.0 = Debug|Any CPU
     1016    {21187322-52DD-4243-80A4-A85F0263E63B}.CEDMA Debug|x86.ActiveCfg = Debug|Any CPU
     1017    {21187322-52DD-4243-80A4-A85F0263E63B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     1018    {21187322-52DD-4243-80A4-A85F0263E63B}.Debug|Any CPU.Build.0 = Debug|Any CPU
     1019    {21187322-52DD-4243-80A4-A85F0263E63B}.Debug|x86.ActiveCfg = Debug|Any CPU
     1020    {21187322-52DD-4243-80A4-A85F0263E63B}.Release|Any CPU.ActiveCfg = Release|Any CPU
     1021    {21187322-52DD-4243-80A4-A85F0263E63B}.Release|Any CPU.Build.0 = Release|Any CPU
     1022    {21187322-52DD-4243-80A4-A85F0263E63B}.Release|x86.ActiveCfg = Release|Any CPU
     1023    {21187322-52DD-4243-80A4-A85F0263E63B}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU
     1024    {21187322-52DD-4243-80A4-A85F0263E63B}.Visualization Debug|Any CPU.Build.0 = Debug|Any CPU
     1025    {21187322-52DD-4243-80A4-A85F0263E63B}.Visualization Debug|x86.ActiveCfg = Debug|Any CPU
    10131026  EndGlobalSection
    10141027  GlobalSection(SolutionProperties) = preSolution
  • trunk/sources/HeuristicLab/CopyAssemblies.cmd

    r953 r1001  
    6161copy "%SolutionDir%\HeuristicLab.Visualization\%Outdir%\HeuristicLab.Visualization-3.2.dll" .\plugins
    6262copy "%SolutionDir%\HeuristicLab.Visualization.Test\%Outdir%\HeuristicLab.Visualization.Test-3.2.dll" .\plugins
     63copy "%SolutionDir%\HeuristicLab.Hive.Job\%Outdir%\HeuristicLab.Hive.Job-3.2.dll" .\plugins
    6364copy "%SolutionDir%\HeuristicLab.Hive.Server\%Outdir%\HeuristicLab.Hive.Server-3.2.dll" .\plugins
    6465copy "%SolutionDir%\HeuristicLab.Hive.Server.ADODataAccess\%Outdir%\HeuristicLab.Hive.Server.ADODataAccess-3.2.dll" .\plugins
Note: See TracChangeset for help on using the changeset viewer.