import java.io.*; import java.rmi.*; import java.util.*; class Chatter { public static void main(String args[]) throws Exception { ChatServer c = (ChatServer) Naming.lookup("//localhost/Chat"); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); while (true) { System.out.print("> "); String line = br.readLine(); c.receive(line); } } }