Changeset 1801
- Timestamp:
- 05/14/09 14:44:23 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ServerConsoleFacade.cs
r1800 r1801 44 44 public Response Login(string username, string password) { 45 45 Response resp = new Response(); 46 47 /* 46 48 sessionID = secMan.Login(username, password); 47 49 if (sessionID == Guid.Empty) { … … 53 55 ApplicationConstants.RESPONSE_SERVERCONSOLE_LOGIN_SUCCESS; 54 56 } 57 */ 58 sessionID = Guid.Empty; 59 resp.Success = true; 60 resp.StatusMessage = ApplicationConstants.RESPONSE_SERVERCONSOLE_LOGIN_SUCCESS; 55 61 return resp; 56 62 }
Note: See TracChangeset
for help on using the changeset viewer.