How can I implement global settings for a JSP application?
Our Web Application maintains the conversational state using a stateful session bean. This bean needs to be accessed by multiple JSP pages in a frame. Now, as per the EJB Specification, these pages can’t execute methods on the SFSB concurrently. Therefore, I want to synchronize the access to the SFSB (the Remote object is being maintained in the HttpSession). What is the best way to do this?