Context initialContext = new InitialContext(); |
StudentHome stHome = (StudentHome) javax.rmi.PortableRemoteObject.narrow( |
initialContext.lookup("myejbs/school/studentHome", StudentHome.class); |
public interface StudentHome extends javax.ejb.EJBHome { |
Student create(String stName, String stId) throws RemoteException, BadStudentIdException, CreateException; |
} |
Student astudent = stHome.create("alex","3142"); |