if I only have servlet/jsp, I can use HttpSession to save the objects in there, easy. Now for the following scenarios---
1.
servlet only talks to STATELESS session beans. In this case, I can just keep using the HtppSession I have in the servlet because the
EJB part doesn't need any session information, is that right ?
2. servlet talks to STATEFUL session bean and stateful session beans talk to entity beans. Then how to I "pass" the HttpSession I have in the servlets to those STATEFUL session beans ? This case often happens when I let users pick certain thing on web pages and these info is stored in the httpsession, then session beans are called, how to handle the session now ?