FileDocCategorySizeDatePackage
Client_53.javaAPI DocExample2138Thu Sep 13 21:43:20 BST 2001com.titan.clients

Client_53

public class Client_53 extends Object
Example of using EJBObject to retrieve home interface.

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

		java.util.Properties properties = new java.util.Properties();
		properties.put(javax.naming.Context.PROVIDER_URL, "iiop:///");
		properties.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, 
			"com.ibm.websphere.naming.WsnInitialContextFactory");
		InitialContext initialContext = new InitialContext(properties);
		return initialContext;
	
public static voidgetTheEJBHome(com.titan.travelagent.TravelAgentRemote agent)


		// The home interface is out of scope in this method,
		// so it must be obtained from the EJB object.
		Object ref = agent.getEJBHome();
		TravelAgentHomeRemote home = (TravelAgentHomeRemote)
			PortableRemoteObject.narrow(ref,TravelAgentHomeRemote.class);

		// Do something useful with the home interface
		EJBMetaData meta = home.getEJBMetaData();
		System.out.println(meta.getHomeInterfaceClass().getName());
		System.out.println(meta.getRemoteInterfaceClass().getName());
		System.out.println(meta.isSession());

	
public static voidmain(java.lang.String[] args)

		try {
			Context jndiContext = getInitialContext();  
			Object ref = jndiContext.lookup("TravelAgentHomeRemote");
			TravelAgentHomeRemote home = (TravelAgentHomeRemote)
				PortableRemoteObject.narrow(ref,TravelAgentHomeRemote.class);

			// Get a remote reference to the bean (EJB object).
			TravelAgentRemote agent = home.create();
			// Pass the remote reference to some method.
			getTheEJBHome(agent);

        } catch (java.rmi.RemoteException re){re.printStackTrace();}
          catch (Throwable t){t.printStackTrace();}