Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1801 for trunk


Ignore:
Timestamp:
05/14/09 14:44:23 (15 years ago)
Author:
mbecirov
Message:

#586: Reverted security request through Security Server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ServerConsoleFacade.cs

    r1800 r1801  
    4444    public Response Login(string username, string password) {
    4545      Response resp = new Response();
     46     
     47      /*
    4648      sessionID = secMan.Login(username, password);
    4749      if (sessionID == Guid.Empty) {
     
    5355          ApplicationConstants.RESPONSE_SERVERCONSOLE_LOGIN_SUCCESS;
    5456      }
     57      */
     58      sessionID = Guid.Empty;
     59      resp.Success = true;
     60      resp.StatusMessage = ApplicationConstants.RESPONSE_SERVERCONSOLE_LOGIN_SUCCESS;
    5561      return resp;
    5662    }
Note: See TracChangeset for help on using the changeset viewer.