try {
FibonacciImpl f = new FibonacciImpl();
Naming.rebind("fibonacci", f);
System.out.println("Fibonacci Server ready.");
}
catch (RemoteException re) {
System.out.println("Exception in FibonacciServer: " + re);
}
catch (MalformedURLException e) {
System.out.println("MalformedURLException " + e);
}