> HttpSession is useful to store the state in cases where the app server
> guarantees the same HttpSession. There are other instances like Palm VII
> applications where every time a request is made, a new HttpSession is
> created. In this scenario, using HttpSession will not work. I only can
> think of Palm VII applications which will have this problem at present.
> In this scenario you will have to use stateful session bean for session
> tracking.
All with have trouble if there are either bugs in or non-functioning URL
rewriting mechanism, or you use plain HTML or other non-JSP pages on the
site, or if the computer doesn't accept cookies (user turned off or browser
doesn't support them). In the end, the web is stateless because HTTP is
stateless, and the rest are just tricks to try to maintain state under such
conditions. If you absolutely must maintain state, you will find there are
many times when users will not be able to use your site.
David
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".