Changeset 1449 for trunk/sources/HeuristicLab.Hive.Server.Console
- Timestamp:
- 03/27/09 14:04:47 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Server.Console
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerManagementConsole.cs
r1377 r1449 45 45 private ResponseList<Job> jobs = null; 46 46 47 private Dictionary< long, ListViewGroup> clientObjects;48 private Dictionary< long, ListViewItem> clientInfoObjects;49 private Dictionary< long, ListViewItem> jobObjects;50 private Dictionary< long, ListViewGroup> userGroupsObjects;51 private Dictionary< long, ListViewItem> userListObjects;47 private Dictionary<Guid, ListViewGroup> clientObjects; 48 private Dictionary<Guid, ListViewItem> clientInfoObjects; 49 private Dictionary<Guid, ListViewItem> jobObjects; 50 private Dictionary<Guid, ListViewGroup> userGroupsObjects; 51 private Dictionary<Guid, ListViewItem> userListObjects; 52 52 53 53 private Job currentJob = null; … … 85 85 private void AddClients() { 86 86 try { 87 clientObjects = new Dictionary< long, ListViewGroup>();88 clientInfoObjects = new Dictionary< long, ListViewItem>();87 clientObjects = new Dictionary<Guid, ListViewGroup>(); 88 clientInfoObjects = new Dictionary<Guid, ListViewItem>(); 89 89 IClientManager clientManager = 90 90 ServiceLocator.GetClientManager(); … … 131 131 private void AddJobs() { 132 132 try { 133 jobObjects = new Dictionary< long, ListViewItem>();133 jobObjects = new Dictionary<Guid, ListViewItem>(); 134 134 IJobManager jobManager = 135 135 ServiceLocator.GetJobManager(); -
trunk/sources/HeuristicLab.Hive.Server.Console/ServiceLocator.cs
r1377 r1449 27 27 Port != String.Empty) { 28 28 29 NetTcpBinding binding = 30 new NetTcpBinding( );29 NetTcpBinding binding = 30 new NetTcpBinding(SecurityMode.None, true); 31 31 32 32 binding.MaxReceivedMessageSize = 5000000;
Note: See TracChangeset
for help on using the changeset viewer.