Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization/ServiceDefinition.build.csdef @ 9198

Last change on this file since 9198 was 9166, checked in by fschoepp, 11 years ago

#1888:

  • Model: OptimizationScenario may be a tree of algorithms (and problems)
  • Model: Renamed InputParameters to ProblemParameters (as they are the parameters of a problem)
  • Model: Added JobExecutionDetails which contain Repetitions + Group (resource to use)
  • ScenarioParser parses the new XML scenario files
  • Website + Model: You are now able to add/remove rows from a table (no JavaScript involved yet)
  • Website + Controller: Added repetitions (enables batch jobs) and group (resource to use) to OaaS which will be used by the controller to schedule the job
  • Website: Updated templates to use new model structure
  • Website + Scenarios: Added the new algorithm Benchmark Algorithm
  • Controller: Added a singleton to make the (Azure/Mockup)-DAL exchangeable
  • Controller: Added mockup classes for DAL + IScenarioManager
  • Website/Result Page: Line Diagrams will be added via JavaScript, crawling their data using AJAX
  • Website: Most configuration parameters can be set in the ServiceDefinition directly
  • Added a mockup for the Membership classes: These can be used if no network connection is available or if other parts of the app shall be tested
  • Scenarios: Updated TSP mappings to new xsd
File size: 2.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  **********************************************************************************************
4
5  This file was generated by a tool from the project file: ServiceDefinition.csdef
6
7  Changes to this file may cause incorrect behavior and will be lost if the file is regenerated.
8
9  **********************************************************************************************
10-->
11<ServiceDefinition name="HeuristicLab.Services.Optimization" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2012-05.1.7">
12  <WebRole name="HeuristicLab.Services.Hive.WebRole" vmsize="Small">
13    <Sites>
14      <Site name="Web">
15        <Bindings>
16          <Binding name="HttpIn" endpointName="HttpIn" />
17        </Bindings>
18      </Site>
19    </Sites>
20    <Endpoints>
21      <InputEndpoint name="HttpIn" protocol="http" port="80" localPort="80" />
22    </Endpoints>
23    <Imports>
24      <Import moduleName="Diagnostics" />
25      <Import moduleName="RemoteAccess" />
26      <Import moduleName="RemoteForwarder" />
27    </Imports>
28    <LocalResources>
29      <LocalStorage name="HeuristicLab.Services.Hive.WebRole.svclog" sizeInMB="1000" cleanOnRoleRecycle="false" />
30    </LocalResources>
31    <Certificates>
32      <Certificate name="localhost" storeLocation="LocalMachine" storeName="My" />
33    </Certificates>
34  </WebRole>
35  <WebRole name="HeuristicLab.Services.Optimization.Web" vmsize="Small">
36    <Sites>
37      <Site name="Web">
38        <Bindings>
39          <Binding name="Endpoint1" endpointName="Endpoint1" />
40        </Bindings>
41      </Site>
42    </Sites>
43    <Endpoints>
44      <InputEndpoint name="Endpoint1" protocol="http" port="8080" />
45    </Endpoints>
46    <Imports>
47      <Import moduleName="Diagnostics" />
48      <Import moduleName="RemoteAccess" />
49    </Imports>
50    <Certificates>
51      <Certificate name="localhost" storeLocation="LocalMachine" storeName="My" />
52    </Certificates>
53    <ConfigurationSettings>
54      <Setting name="Cloudia.WindowsAzure.Storage" />
55      <Setting name="HiveEndpointName" />
56      <Setting name="ControllerEndpointName" />
57    </ConfigurationSettings>
58  </WebRole>
59</ServiceDefinition>
Note: See TracBrowser for help on using the repository browser.