Hi All
Newbie to the world of
EJB & will shortly start working on EJB's. I am preparing for SCBC also.
I saw a lot of examples but in none could I find how will the remote client specify the IP address of the server to retrieve the Remote Home Interface of the EJB
***********************************************************
Context ctx= new InitialContext();
Object ejbHome=initialContext.lookup("java:comp/env/ejb/account");
AccountHome accountHome = (AccountHome)javax.rmi.PortableRemoteObject.narrow(ejbHome,AccountHome.class);
*************************************************************
In this piece of code how will the client know which machine to look into for the remote home interface.
Rgrds
Vishal