import java.rmi.Naming;


public class Client{
	
	public static void main(String args[]) throws Exception{
		theInterface myServant;
		myServant = (theInterface)Naming.lookup("//localhost/theServant");
		String ret = myServant.fonct("Hello!");
		System.out.println("retour de fonct dans Client: "+ret);
	}

}
