FileDocCategorySizeDatePackage
Client_53.javaAPI DocExample1474Wed May 29 12:30:32 BST 2002com.titan.clients

Client_53

public class Client_53 extends Object

Fields Summary
public static int
SHIP_ID
public static int
BED_COUNT
Constructors Summary
Methods Summary
public static javax.naming.ContextgetInitialContext()

      return new InitialContext();
   
public static voidmain(java.lang.String[] args)


         
   
      try 
      {
         Context jndiContext = getInitialContext();
           
         Object ref = jndiContext.lookup("TravelAgentHomeRemote");
               
         TravelAgentHomeRemote home = (TravelAgentHomeRemote)
            PortableRemoteObject.narrow(ref,TravelAgentHomeRemote.class);
        
         TravelAgentRemote travelAgent = home.create();
        
         // Get a list of all cabins on ship 1 with a bed count of 3.
         String list [] = travelAgent.listCabins(SHIP_ID,BED_COUNT);
        
         for(int i = 0; i < list.length; i++)
         {
            System.out.println(list[i]);
         }
        
      } 
      catch (java.rmi.RemoteException re)
      {
         re.printStackTrace();
      }
      catch (Throwable t)
      {
         t.printStackTrace();
      }