comparison Messaging/Server/UI/MainWindowViewModel.cs @ 34:874e51b94623

ZeroMq uses different style of address for client and server
author adminsh@apollo
date Thu, 22 Mar 2012 08:42:03 +0000
parents 7d9de5746f18
children
comparison
equal deleted inserted replaced
33:f3a0641c1586 34:874e51b94623
48 48
49 public MainWindowViewModel() 49 public MainWindowViewModel()
50 { 50 {
51 InitMsmqEndPoint(Settings.MsmqQueueName); 51 InitMsmqEndPoint(Settings.MsmqQueueName);
52 InitRabbitEndPoint(Settings.RabbitPortNumber, Settings.RabbitQueueName); 52 InitRabbitEndPoint(Settings.RabbitPortNumber, Settings.RabbitQueueName);
53 InitZeroMqEndPoint(Settings.ZeroMqAddress); 53 InitZeroMqEndPoint(Settings.ZeroMqServerAddress);
54 54
55 CloseCommand = new RelayCommand(CloseCommandExecute); 55 CloseCommand = new RelayCommand(CloseCommandExecute);
56 } 56 }
57 57
58 #endregion 58 #endregion