brunp wrote:
> 
> Since moving to Jetspeed 2.1.3, it appears that some Session Variables
> that are stored within the session are being deleted and access to these
> variables appear to invalidate access to some functionality? Are there any
> changes from 2.0 to 2.1.3 that would explain this?
> 

To further expand on this problem, we are setting a session variable via the
following code:

HttpSession session = request.getSession();
session.setAttribute("user", user); 


and then later on, reading it in the following manner: 

User userInSession = (User) session.getAttribute("user");


This worked in our Jetspeed 2.0 implementation, so unless I missed a
configuration setting that prevents session variables from being stored
and/or retrieved, I am sort of at a loss as to why this is happening.

Thanks
Paul
-- 
View this message in context: 
http://www.nabble.com/Session-variables-are-getting-wiped-out-tp24721155p24722708.html
Sent from the Jetspeed - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscr...@portals.apache.org
For additional commands, e-mail: jetspeed-user-h...@portals.apache.org

Reply via email to