Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/GenerateServiceClients.cmd @ 5306

Last change on this file since 5306 was 4649, checked in by cneumuel, 14 years ago
  • moved db-context into datalayer
  • businesslayer only defines the transaction-scope
  • removed contextfactory
  • implemented convert-methods
  • made naming in db and domainobjects more consistent
  • changed wcf-service to be http-only (for now)

(#1233)

File size: 1.1 KB
Line 
1echo off
2
3echo.
4echo *******************************************************************************************
5echo Generating HiveService client
6echo.
7
8svcutil.exe ^
9  http://localhost:9000/HiveService/mex ^
10  /out:HiveServiceClient ^
11  /namespace:*,HeuristicLab.Clients.Hive ^
12  /targetClientVersion:Version35 ^
13  /enableDataBinding ^
14  /config:..\app.config
15
16echo.
17echo ---------------------------------------------------------------------------------------
18echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
19echo.
20echo Following modifications have to be done manually in generated data contracts:
21echo  * Remove method "protected void RaisePropertyChanged(string propertyName)" in OKBItem
22echo.
23echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
24echo ---------------------------------------------------------------------------------------
25echo.
26echo Generation of OKBService client finished.
27echo *******************************************************************************************
28
Note: See TracBrowser for help on using the repository browser.