public class TimeStampClient { static public void main(String args[]){ // Initialize the ORB. org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(args,null); // bind to TimeStamp remote object TimeStamp.TimeStampIF obj = TimeStamp.TimeStampIFHelper.bind(orb,"TimeStampService"); // call the getTimeStamp() method on the remote object String whatTimeIsIt = obj.getTimeStamp(); // print out the time given by the server System.out.println("TimeStamp = "+whatTimeIsIt); } }>