I have read several posts about how to manually bind stateless pages in a custom WebSession object to the http session. In my custom WebSession, I would like to create some objects, but only if and when the WebSession actually binds as normal when a stateful page is called up.
Is there a method I can do this in? The bind() method is final, so I cannot do it there. I only want to create these objects once just as if they were in the constructor. I am assuming that the bind() method is only called once.
