diff Messaging/Common/Settings.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
line wrap: on
line diff
--- a/Messaging/Common/Settings.cs	Thu Mar 22 08:11:42 2012 +0000
+++ b/Messaging/Common/Settings.cs	Thu Mar 22 08:42:03 2012 +0000
@@ -5,6 +5,7 @@
         public const string MsmqQueueName = @".\private$\Queue#1";
         public const int RabbitPortNumber = 5672;
         public const string RabbitQueueName = "Queue#2";
-        public const string ZeroMqAddress = "tcp://*:5555";
+        public const string ZeroMqServerAddress = "tcp://*:5555";
+        public const string ZeroMqClientAddress = "tcp://localhost:5555";
     }
 }