Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     Console.WriteLine("Starting Publisher...");
     var clientAppHost = new ClientAppHost();
     clientAppHost.Init();
     clientAppHost.Start("http://localhost:81");
     while (true)
     {
         Console.WriteLine("Press enter to send a message...");
         clientAppHost.SendMessage();
         Console.ReadLine();
     }
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Starting Publisher...");
            var clientAppHost = new ClientAppHost();

            clientAppHost.Init();
            clientAppHost.Start("http://localhost:81");
            while (true)
            {
                Console.WriteLine("Press enter to send a message...");
                clientAppHost.SendMessage();
                Console.ReadLine();
            }
        }