Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 8890 was 8817, checked in by fschoepp, 12 years ago

#1888:

  • Added a parser for independent scenarios (using the model of the optimization backend)
  • Optimization scenario sample can be found in mappings folder of the web project.
  • Added IScenarioMapper interface which provides functionality to map from the optimization data model to a backend model (e.g. Heuristic Lab data model)
  • Implementations of IScenarioMapper have to be provided as C# code (strings) which will be compiled by using a CSharpCodeProvider. Once compiled, the implementations of the IScenarioMapper are being cached within the platform for further usage.
  • Fixed a bug in web template DecimalMatrix (using i instead of j)
  • Added missing thumprint of localhost certificate to the optimization web project (ServiceConfiguration.Local.cscfg / ServiceConfiguration.Cloud.cscfg)
  • Test project now provides following test cases: Mapping types using IronPython and mapping types using Otis
File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<ServiceDefinition name="HeuristicLab.Services.Optimization" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2012-05.1.7">
3  <WebRole name="HeuristicLab.Services.Hive.WebRole" vmsize="Small">
4    <Sites>
5      <Site name="Web">
6        <Bindings>
7          <Binding name="HttpIn" endpointName="HttpIn" />
8        </Bindings>
9      </Site>
10    </Sites>
11    <Endpoints>
12      <InputEndpoint name="HttpIn" protocol="http" port="80" localPort="80" />
13    </Endpoints>
14    <Imports>
15      <Import moduleName="Diagnostics" />
16      <Import moduleName="RemoteAccess" />
17      <Import moduleName="RemoteForwarder" />
18    </Imports>
19    <LocalResources>
20      <LocalStorage name="HeuristicLab.Services.Hive.WebRole.svclog" sizeInMB="1000" cleanOnRoleRecycle="false" />
21    </LocalResources>
22    <Certificates>
23      <Certificate name="localhost" storeLocation="LocalMachine" storeName="My" />
24    </Certificates>
25  </WebRole>
26  <WebRole name="HeuristicLab.Services.Optimization.Web" vmsize="Small">
27    <Sites>
28      <Site name="Web">
29        <Bindings>
30          <Binding name="Endpoint1" endpointName="Endpoint1" />
31        </Bindings>
32      </Site>
33    </Sites>
34    <Endpoints>
35      <InputEndpoint name="Endpoint1" protocol="http" port="8080" />
36    </Endpoints>
37    <Imports>
38      <Import moduleName="Diagnostics" />
39      <Import moduleName="RemoteAccess" />
40    </Imports>
41    <Certificates>
42      <Certificate name="localhost" storeLocation="LocalMachine" storeName="My" />
43    </Certificates>
44  </WebRole>
45</ServiceDefinition>
Note: See TracBrowser for help on using the repository browser.