Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/20/12 13:00:30 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • Web project now creates custom html for each type we want to enter / display
  • Added endpointConfigurationName to HiveServiceLocator (because Web Project contains more than one endpoint configuration)
  • Removed logging statement from ConfigurationService to prevent exception during failure of loading ConfigurationSettings
  • ApplicationManager: Changed default implementation to WebApplicationManager (instead of LightWeight) for testing purposes within Web Project
  • WebApplicationManager: The application manager which returns plugin descriptors from the currently loaded assemblies (instead of LightweightAppManager)
  • HiveService: Fixed a transaction bug
  • IControllerService: Created a method to dispatch Scenarios to certain IScenarioManager (in this case HiveScenarioManager)
  • Added more mappable types to ControllerModel
  • PlaceholderControllerService dispatches all Scenarios to the HiveScenarioManager
  • Web project now dispatches the scenario to the controller after pressing "Run Job"
Location:
branches/OaaS/HeuristicLab.Clients.Hive/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Clients.Hive/3.3/HiveServiceLocator.cs

    r8251 r8506  
    4949    }
    5050
     51    private string endpointConfigurationName;
     52
     53    public string EndpointConfigurationName
     54    {
     55      get { return endpointConfigurationName; }
     56      set { endpointConfigurationName = value; }
     57    }
     58
     59
    5160    private string remoteAddress;
    5261    public string RemoteAddress {
     
    5968      get { return identityCertificate; }
    6069      set { identityCertificate = value; }
    61     }
     70    }   
    6271
    6372    private HiveServiceClient NewServiceClient() {
     
    6675        cl = ClientFactory.CreateClient<HiveServiceClient, IHiveService>();
    6776      else {
    68         cl = ClientFactory.CreateClient<HiveServiceClient, IHiveService>(null, null, username, password);
     77        cl = ClientFactory.CreateClient<HiveServiceClient, IHiveService>(endpointConfigurationName, null, username, password);
    6978      }
    7079
  • branches/OaaS/HeuristicLab.Clients.Hive/3.3/IHiveServiceLocator.cs

    r8251 r8506  
    2727    string Password { get; set; }
    2828    string RemoteAddress { get; set; }
     29    string EndpointConfigurationName { get; set; }
    2930    string IdentityCertificate { get; set; }
    3031    void CallHiveService(Action<IHiveService> call);
Note: See TracChangeset for help on using the changeset viewer.