Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/07/09 17:08:46 (15 years ago)
Author:
aleitner
Message:

panel for details which shows an image and a close button if details should be closed (#452)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsole.cs

    r1037 r1089  
    3434using System.Net;
    3535
    36 namespace HeuristicLab.Hive.Server.Console {
     36namespace HeuristicLab.Hive.Server.ServerConsole {
    3737
    3838  public partial class HiveServerConsole : Form {
     
    8080          if ((IPAddress.TryParse(tbIp.Text, out ipAdress)) &&
    8181            int.TryParse(tbPort.Text, out port)) {
    82             IUserRoleManager userManager =
    83           ServiceLocator.GetUserRoleManager();
    84             ResponseList<User> user = userManager.GetAllUsers();
    85             user = userManager.GetAllUsers();
     82            IServerConsoleFacade scf = ServiceLocator.GetServerConsoleFacade();
     83            Response resp = scf.Login(tbUserName.Text, tbPwd.Text);
    8684          } else {
    8785            lblError.Text = "IP or Port not valid";
Note: See TracChangeset for help on using the changeset viewer.