Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1800


Ignore:
Timestamp:
05/14/09 14:41:03 (15 years ago)
Author:
msteinbi
Message:

added status message to login response (#466)

File:
1 edited

Legend:

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

    r1799 r1800  
    4545      Response resp = new Response();
    4646      sessionID = secMan.Login(username, password);
    47       if (sessionID == Guid.Empty)
     47      if (sessionID == Guid.Empty) {
    4848        resp.Success = false;
    49       else {
     49        resp.StatusMessage = ApplicationConstants.RESPONSE_SERVERCONSOLE_LOGIN_FAILED;
     50      } else {
    5051        resp.Success = true;
    5152        resp.StatusMessage =
Note: See TracChangeset for help on using the changeset viewer.