Hello group,
I have some problem with GWT Servlet Session and Java Servlet Session. I
have stored a data in GWT Servlet Session like this:
HttpServletRequest request = this.getThreadLocalRequest();
HttpSession session = request.getSession(true);
session.setAttribute("key", "data");
but when I do
HttpSession session = request.getSession(true);
String userSecurityContext = (String )session.getAttribute("key");
from my JAva servlet to get my session data, the returned value was "null".
My question is How can I get the data stored in GWT servlet session from
another Java Servlet.
Thanks in advance
dialloma
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---