Changeset 1649 for trunk/sources
- Timestamp:
- 04/24/09 12:09:27 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ServerConsoleFacade.cs
r1648 r1649 45 45 public Response Login(string username, string password) { 46 46 Response resp = new Response(); 47 /* 47 48 sessionID = permManager.Authenticate(username, password); 48 49 if (sessionID == Guid.Empty) 49 50 resp.Success = false; 50 51 else { 52 51 53 resp.Success = true; 52 54 resp.StatusMessage = 53 55 ApplicationConstants.RESPONSE_SERVERCONSOLE_LOGIN_SUCCESS; 54 56 } 57 */ 58 resp.Success = true; 59 resp.StatusMessage = 60 ApplicationConstants.RESPONSE_SERVERCONSOLE_LOGIN_SUCCESS; 55 61 return resp; 56 62 }
Note: See TracChangeset
for help on using the changeset viewer.