Changeset 5588
- Timestamp:
- 03/02/11 10:17:53 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/WcfServicePool.cs
r5153 r5588 22 22 using System; 23 23 using System.ServiceModel; 24 using HeuristicLab.Clients.Common; 24 25 using HeuristicLab.Common; 25 using HeuristicLab.Hive.Tracing;26 using HeuristicLab.Clients.Common;27 using HeuristicLab.Hive.Contracts.Interfaces;28 26 29 27 namespace HeuristicLab.Hive.Contracts { … … 63 61 try { 64 62 if (!string.IsNullOrEmpty(userName) && !string.IsNullOrEmpty(password)) { 65 return ClientFactory.CreateClient<T>(endpointName, hostAddress, userName, password); 63 var factory = ClientFactory.CreateChannelFactory<T>(endpointName, hostAddress, userName, password); 64 return new Disposable<T>(factory.Obj.CreateChannel()); 66 65 } else { 67 return ClientFactory.CreateClient<T>(endpointName, hostAddress); 66 var factory = ClientFactory.CreateChannelFactory<T>(endpointName, hostAddress); 67 return new Disposable<T>(factory.Obj.CreateChannel()); 68 68 } 69 69 } -
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Console/3.3/LogServiceReader.cs
r5093 r5588 2 2 using System.Collections.Generic; 3 3 using System.Linq; 4 using System.Text;5 4 using System.Windows.Forms; 6 using HeuristicLab.C ore;5 using HeuristicLab.Clients.Common; 7 6 using HeuristicLab.Hive.Slave.Console.SlaveConsoleService; 8 using HeuristicLab.Clients.Common;9 7 10 8 namespace HeuristicLab.Hive.Slave.Console { … … 24 22 } 25 23 26 void timer_Tick(object sender, EventArgs e) {24 private void timer_Tick(object sender, EventArgs e) { 27 25 try { 28 using (var slaveClient = ClientFactory.CreateClient<ISlaveConsoleCommunicator>("SlaveConsoleTcpEndpointClient")) { 26 using (var factory = ClientFactory.CreateChannelFactory<ISlaveConsoleCommunicator>("SlaveConsoleTcpEndpointClient")) { 27 var slaveClient = factory.Obj.CreateChannel(); 29 28 try { 30 var messages = slaveClient. Obj.GetLogMessages();29 var messages = slaveClient.GetLogMessages(); 31 30 if (messages.Count < messageCount) { 32 31 messageCount = 0; // log got cleared
Note: See TracChangeset
for help on using the changeset viewer.