Example #1
0
        public static void start()
        {
            var info = (IInfo)ORBMiddleware.GetObjectReference("InfoServer", typeof(IInfo));

            info.get_road_info(66);
            info.get_temp("Timisoara");
        }
Example #2
0
        public static void start()
        {
            var math = (IMath)ORBMiddleware.GetObjectReference("MathServer", typeof(IMath));

            math.do_add(2.5, 1.4);
            math.do_sqr(16.1);
        }