Re: communication between two HttpSession objects
Posted By:
Bozidar_Dangubic
Posted On:
Wednesday, January 2, 2002 11:34 AM
when you need to share user's information with another user, you store it in the ServletContext and not HttpSession. HttpSession is for a single user, ServletContext is for all users. so use them appropriately.