Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 8728 was 8384, checked in by fschoepp, 12 years ago

#1888:

  • Created a project which contains the back-end controller for the Optimization WebSite
  • Added a WCF-back-end-controller which generates all available optimization problems (currently in-memory solution: PlaceholderControllerService.cs)
  • Created a WebRole using ASP.NET MVC 3 for the Optimization Web Site
  • WebSite authenticates users with the HeuristicLab.Authentication membership provider and database
  • WebSite crawls and displays all available optimization scenarios by using the WCF-back-end controller (test with: http://localhost:.../optimization)
File size: 1.5 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  </WebRole>
42</ServiceDefinition>
Note: See TracBrowser for help on using the repository browser.