Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/16/17 13:03:37 (7 years ago)
Author:
jkarder
Message:

#2743: merged r14722, r14726, r14732, r14738, r14748:14749, r14820, r14828, r15005 and r15075 into stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Clients.OKB/3.3/RunCreation/ServiceClient/GenerateServiceClient.cmd

    r8055 r15261  
    1 echo off
     1@ECHO OFF
    22
    3 echo.
    4 echo *******************************************************************************************
    5 echo Generating OKB run creation service client
    6 echo.
     3SET HOST=
     4SET GENERATECONFIG=
    75
    8 REM If app.config should be generated, use option "/config:..\..\app.config" and optionally "/mergeConfig" instead of "/noConfig".
     6ECHO.
     7ECHO *******************************************************************************************
    98
    10 svcutil.exe ^
    11   http://localhost:8732/Design_Time_Addresses/OKB-3.3/RunCreationService/mex ^
    12   /out:RunCreationServiceClient ^
    13   /namespace:*,HeuristicLab.Clients.OKB.RunCreation ^
    14   /collectionType:System.Collections.Generic.List`1 ^
    15   /targetClientVersion:Version35 ^
    16   /enableDataBinding ^
    17   /noConfig
     9SET /P HOST=Which host should be used? [services.heuristiclab.com]:
     10IF "%HOST%"=="" SET HOST=services.heuristiclab.com
    1811
    19 echo.
    20 echo Generation of OKB run creation service client finished.
    21 echo *******************************************************************************************
    22 echo.
     12SET /P GENERATECONFIG=Would you like to generate the configuration file? [y]:
     13IF "%GENERATECONFIG%"=="" SET GENERATECONFIG=y
    2314
    24 pause
     15SET ARGS=http://%HOST%/OKB-3.3/RunCreationService.svc?wsdl ^
     16/out:RunCreationServiceClient ^
     17/namespace:*,HeuristicLab.Clients.OKB.RunCreation ^
     18/collectionType:System.Collections.Generic.List`1 ^
     19/targetClientVersion:Version35 ^
     20/enableDataBinding ^
     21/syncOnly
     22
     23IF "%GENERATECONFIG%"=="y" (
     24  SET ARGS=%ARGS% /config:..\..\app.config /mergeConfig
     25) ELSE (
     26  SET ARGS=%ARGS% /noConfig
     27)
     28
     29ECHO.
     30ECHO Generating RunCreationService client
     31ECHO.
     32
     33SETLOCAL ENABLEDELAYEDEXPANSION
     34svcutil.exe %ARGS%
     35ENDLOCAL
     36
     37ECHO.
     38ECHO Generation of RunCreationService client finished.
     39ECHO *******************************************************************************************
     40ECHO.
     41
     42PAUSE
  • stable/HeuristicLab.Clients.OKB/3.3/RunCreation/ServiceClient/RunCreationServiceClient.cs

    r15082 r15261  
    12701270        System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm> GetAlgorithms(string platformName);
    12711271       
    1272         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetAlgorithms", ReplyAction="http://tempuri.org/IRunCreationService/GetAlgorithmsResponse")]
    1273         System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm>> GetAlgorithmsAsync(string platformName);
    1274        
    12751272        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetAlgorithmData", ReplyAction="http://tempuri.org/IRunCreationService/GetAlgorithmDataResponse")]
    12761273        byte[] GetAlgorithmData(long algorithmId);
    12771274       
    1278         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetAlgorithmData", ReplyAction="http://tempuri.org/IRunCreationService/GetAlgorithmDataResponse")]
    1279         System.Threading.Tasks.Task<byte[]> GetAlgorithmDataAsync(long algorithmId);
    1280        
    12811275        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblems", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemsResponse")]
    12821276        System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem> GetProblems(string platformName);
    12831277       
    1284         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblems", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemsResponse")]
    1285         System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem>> GetProblemsAsync(string platformName);
    1286        
    12871278        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblemData", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemDataResponse")]
    12881279        byte[] GetProblemData(long problemId);
    1289        
    1290         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblemData", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemDataResponse")]
    1291         System.Threading.Tasks.Task<byte[]> GetProblemDataAsync(long problemId);
    12921280       
    12931281        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutions", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionsResponse")]
     
    12951283        System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutions(long problemId);
    12961284       
    1297         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutions", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionsResponse")]
    1298         System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution>> GetSolutionsAsync(long problemId);
    1299        
    13001285        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolution", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionResponse")]
    13011286        HeuristicLab.Clients.OKB.RunCreation.Solution GetSolution(long solutionId);
    1302        
    1303         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolution", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionResponse")]
    1304         System.Threading.Tasks.Task<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutionAsync(long solutionId);
    13051287       
    13061288        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutionData", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionDataResponse")]
     
    13081290        byte[] GetSolutionData(long solutionId);
    13091291       
    1310         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutionData", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionDataResponse")]
    1311         System.Threading.Tasks.Task<byte[]> GetSolutionDataAsync(long solutionId);
    1312        
    13131292        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddSolution", ReplyAction="http://tempuri.org/IRunCreationService/AddSolutionResponse")]
    13141293        long AddSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data);
    13151294       
    1316         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddSolution", ReplyAction="http://tempuri.org/IRunCreationService/AddSolutionResponse")]
    1317         System.Threading.Tasks.Task<long> AddSolutionAsync(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data);
    1318        
    13191295        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/DeleteSolution", ReplyAction="http://tempuri.org/IRunCreationService/DeleteSolutionResponse")]
    13201296        void DeleteSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution);
    13211297       
    1322         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/DeleteSolution", ReplyAction="http://tempuri.org/IRunCreationService/DeleteSolutionResponse")]
    1323         System.Threading.Tasks.Task DeleteSolutionAsync(HeuristicLab.Clients.OKB.RunCreation.Solution solution);
    1324        
    13251298        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddRun", ReplyAction="http://tempuri.org/IRunCreationService/AddRunResponse")]
    13261299        void AddRun(HeuristicLab.Clients.OKB.RunCreation.Run run);
    13271300       
    1328         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddRun", ReplyAction="http://tempuri.org/IRunCreationService/AddRunResponse")]
    1329         System.Threading.Tasks.Task AddRunAsync(HeuristicLab.Clients.OKB.RunCreation.Run run);
    1330        
    13311301        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/GetCharacteristicValuesResponse")]
    13321302        System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> GetCharacteristicValues(long problemId);
    1333        
    1334         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/GetCharacteristicValuesResponse")]
    1335         System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value>> GetCharacteristicValuesAsync(long problemId);
    13361303       
    13371304        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValue", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValueResponse")]
     
    13401307            "cTypeFault", Name="UnknownCharacteristicType", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
    13411308        void SetCharacteristicValue(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value);
    1342        
    1343         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValue", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValueResponse")]
    1344         System.Threading.Tasks.Task SetCharacteristicValueAsync(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value);
    13451309       
    13461310        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValuesResponse")]
     
    13501314            "", Name="MissingProblem", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
    13511315        void SetCharacteristicValues(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values);
    1352        
    1353         [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValuesResponse")]
    1354         System.Threading.Tasks.Task SetCharacteristicValuesAsync(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values);
    13551316    }
    13561317   
     
    13941355        }
    13951356       
    1396         public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm>> GetAlgorithmsAsync(string platformName)
    1397         {
    1398             return base.Channel.GetAlgorithmsAsync(platformName);
    1399         }
    1400        
    14011357        public byte[] GetAlgorithmData(long algorithmId)
    14021358        {
     
    14041360        }
    14051361       
    1406         public System.Threading.Tasks.Task<byte[]> GetAlgorithmDataAsync(long algorithmId)
    1407         {
    1408             return base.Channel.GetAlgorithmDataAsync(algorithmId);
    1409         }
    1410        
    14111362        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem> GetProblems(string platformName)
    14121363        {
     
    14141365        }
    14151366       
    1416         public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem>> GetProblemsAsync(string platformName)
    1417         {
    1418             return base.Channel.GetProblemsAsync(platformName);
    1419         }
    1420        
    14211367        public byte[] GetProblemData(long problemId)
    14221368        {
     
    14241370        }
    14251371       
    1426         public System.Threading.Tasks.Task<byte[]> GetProblemDataAsync(long problemId)
    1427         {
    1428             return base.Channel.GetProblemDataAsync(problemId);
    1429         }
    1430        
    14311372        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutions(long problemId)
    14321373        {
     
    14341375        }
    14351376       
    1436         public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution>> GetSolutionsAsync(long problemId)
    1437         {
    1438             return base.Channel.GetSolutionsAsync(problemId);
    1439         }
    1440        
    14411377        public HeuristicLab.Clients.OKB.RunCreation.Solution GetSolution(long solutionId)
    14421378        {
     
    14441380        }
    14451381       
    1446         public System.Threading.Tasks.Task<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutionAsync(long solutionId)
    1447         {
    1448             return base.Channel.GetSolutionAsync(solutionId);
    1449         }
    1450        
    14511382        public byte[] GetSolutionData(long solutionId)
    14521383        {
     
    14541385        }
    14551386       
    1456         public System.Threading.Tasks.Task<byte[]> GetSolutionDataAsync(long solutionId)
    1457         {
    1458             return base.Channel.GetSolutionDataAsync(solutionId);
    1459         }
    1460        
    14611387        public long AddSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data)
    14621388        {
     
    14641390        }
    14651391       
    1466         public System.Threading.Tasks.Task<long> AddSolutionAsync(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data)
    1467         {
    1468             return base.Channel.AddSolutionAsync(solution, data);
    1469         }
    1470        
    14711392        public void DeleteSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution)
    14721393        {
     
    14741395        }
    14751396       
    1476         public System.Threading.Tasks.Task DeleteSolutionAsync(HeuristicLab.Clients.OKB.RunCreation.Solution solution)
    1477         {
    1478             return base.Channel.DeleteSolutionAsync(solution);
    1479         }
    1480        
    14811397        public void AddRun(HeuristicLab.Clients.OKB.RunCreation.Run run)
    14821398        {
     
    14841400        }
    14851401       
    1486         public System.Threading.Tasks.Task AddRunAsync(HeuristicLab.Clients.OKB.RunCreation.Run run)
    1487         {
    1488             return base.Channel.AddRunAsync(run);
    1489         }
    1490        
    14911402        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> GetCharacteristicValues(long problemId)
    14921403        {
     
    14941405        }
    14951406       
    1496         public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value>> GetCharacteristicValuesAsync(long problemId)
    1497         {
    1498             return base.Channel.GetCharacteristicValuesAsync(problemId);
    1499         }
    1500        
    15011407        public void SetCharacteristicValue(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value)
    15021408        {
     
    15041410        }
    15051411       
    1506         public System.Threading.Tasks.Task SetCharacteristicValueAsync(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value)
    1507         {
    1508             return base.Channel.SetCharacteristicValueAsync(problemId, value);
    1509         }
    1510        
    15111412        public void SetCharacteristicValues(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values)
    15121413        {
    15131414            base.Channel.SetCharacteristicValues(problemId, values);
    15141415        }
    1515        
    1516         public System.Threading.Tasks.Task SetCharacteristicValuesAsync(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values)
    1517         {
    1518             return base.Channel.SetCharacteristicValuesAsync(problemId, values);
    1519         }
    15201416    }
    15211417}
Note: See TracChangeset for help on using the changeset viewer.