示例#1
0
        static void Main(string[] args)
        {
            ChannelFactory <IService1> directChannelFactory1 = new ChannelFactory <IService1>(new NetTcpBinding());
            IService1 directChannel1 = directChannelFactory1.CreateChannel(new EndpointAddress("net.tcp://localhost:10001/Service1/Service1/"));

            Console.WriteLine("Direct Call Service 1 which calls Service 2: " + directChannel1.ExecuteService1("TesteA"));

            ChannelFactory <IService2> directChannelFactory2 = new ChannelFactory <IService2>(new NetTcpBinding());
            IService2 directChannel2 = directChannelFactory2.CreateChannel(new EndpointAddress("net.tcp://localhost:10002/Service2/Service2/"));

            Console.WriteLine("Direct Call Service 2: " + directChannel2.ExecuteService2("TesteB"));

            Console.WriteLine("------------------------------------------------");

            Console.WriteLine("Main Window - Calling Service 1 which calls Service 2");

            string message      = Console.ReadLine();
            bool   continueLoop = true;

            while (continueLoop)
            {
                try
                {
                    Console.WriteLine("Main - Sent message: " + message);
                    ChannelFactory <IService1> channelFactory1 = new ChannelFactory <IService1>(new NetTcpBinding());
                    IService1 channel1 = channelFactory1.CreateChannel(new EndpointAddress("net.tcp://localhost:10001/Service1/Service1/"));
                    Console.WriteLine("Main - Received message: " + channel1.ExecuteService1(message));
                }
                catch (Exception ex)
                {
                    Console.WriteLine("Error on Main:\n" + ex.Message);
                }

                message = Console.ReadLine();

                if (string.Equals(message, "exit"))
                {
                    continueLoop = false;
                }
            }
        }
示例#2
0
        public string ExecuteService1(string message)
        {
            Console.WriteLine("Service 1 - Received message: " + message);

            string result = string.Empty;

            try
            {
                Console.WriteLine("Service 1 - Sent message: " + message);

                ChannelFactory <IService2> channelFactory2 = new ChannelFactory <IService2>(new NetTcpBinding());
                IService2 channel2 = channelFactory2.CreateChannel(new EndpointAddress("net.tcp://localhost:10002/Service2/Service2/"));
                result = channel2.ExecuteService2(message);

                Console.WriteLine("Service 1 - Got message: " + result);
            }
            catch (Exception ex)
            {
                Console.WriteLine("Error on Service 1:\n" + ex.Message);
            }

            return(result);
        }