Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/11/10 15:30:03 (13 years ago)
Author:
cneumuel
Message:

#1260

  • added LogServiceReader to display log for slave without writing to local files
  • aborted jobs with childjobs now got back to state WaitForChildJob (instead of Offline)
  • lifecyclemanager now knows about available plugins (does not yet work perfectly)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/ServiceLocator.cs

    r4425 r4772  
    99    private static IServerConsoleFacade serverConsoleFacade = null;
    1010
    11     internal static string Address { get; set; }
    1211    internal static string Username { get; set; }
    1312    internal static string Password { get; set; } // [chn] TODO: Don't store plaintext password in memory!
     
    2221
    2322    internal static IServerConsoleFacade GetServerConsoleFacade() {
    24       if (serverConsoleFacade == null && Address != String.Empty) {
     23      if (serverConsoleFacade == null) {
    2524        ChannelFactory<IServerConsoleFacade> factory = new ChannelFactory<IServerConsoleFacade>("ServerConsoleHttpEndpoint");
    26         WcfSettings.SetEndpointAddress(factory.Endpoint, Address);
     25        //WcfSettings.SetEndpointAddress(factory.Endpoint, Address);
    2726
    2827        factory.Credentials.UserName.UserName = Username;
Note: See TracChangeset for help on using the changeset viewer.