Package com.titan.clients

Source Code of com.titan.clients.Client_58

package com.titan.clients;

import com.titan.travelagent.TravelAgentHomeRemote;
import com.titan.travelagent.TravelAgentRemote;

import javax.naming.InitialContext;
import javax.naming.Context;
import javax.naming.NamingException;
import javax.ejb.CreateException;
import javax.rmi.PortableRemoteObject;

import java.rmi.RemoteException;
import java.util.Properties;

public class Client_58 {

    public static int SHIP_ID = 1;
    public static int BED_COUNT = 3;

    public static void main(String [] args) {
        try {
            Context jndiContext = getInitialContext();
          
           Object ref = jndiContext.lookup("TravelAgentHome");         
              
           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();}
          System.exit(0);
  }

static public Context getInitialContext() throws Exception {
    Properties p = new Properties();
  //p.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
  //p.put(Context.PROVIDER_URL, "t3://localhost:7001");
    return new InitialContext(p);
  }

}
TOP

Related Classes of com.titan.clients.Client_58

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.