java.io.BufferedReader reader = new java.io.BufferedReader(input);
// This contains the IOR
String stringTarget = reader.readLine();
// Convert the IOR into a CORBA object
org.omg.CORBA.Object obj = myORB.orb().string_to_object(stringTarget);
// Narrow the object into an object implementing <CODE>Hello</CODE>
System.out.println("Try to convert the obj ref to a Bank object !");
bank = BankHelper.narrow(obj);
}
catch (java.io.IOException ioe)