class Messanger { public static void main(String args[]) { String host ="localhost"; Comm_Proxy destination = new Comm_Proxy("horb://"+host); Message message = new Message("Love"); System.out.println( destination.receiveMessage(message)); System.out.println( message.Out() ); } }