Java EJB Programming Question:
Download Questions PDF

How EJB Invocation happens?

Answer:

Retrieve Home Object reference from Naming Service via JNDI. Return Home Object reference to the client. Create me a new EJB Object through Home Object interface. Create EJB Object from the Ejb Object. Return EJB Object reference to the client. Invoke business method using EJB Object reference. Delegate request to Bean (Enterprise Bean).

Download Java EJB Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is Entity Bean and Session Bean ? Is it possible to share an HttpSession between a JSP and EJB? What happens when I change a value in the HttpSession from inside an EJB?