Hey,
This is the main method inthe HelloServer class
public static void main (
String[] argv) {
try {
Naming.rebind ("Hello", new Hello ("Hello, world!"));
System.out.println ("Hello Server is ready.");
} catch (Exception e) {
//System.out.println ("Hello Server failed: " +
e.printStackTrace();
}
}
I hope this helps.