I don't too much about gwt session on java. I've some doubts about it. Anyone can check if the implementation below is the way it needs to be done.
public class ServiceImpl extends RemoteServiceServlet implements Service
{
void CreateSession(String Username)
{
HttpServletRequest request = this.getThreadLocalRequest();
HttpSession session = request.getSession();
session.setAttribute("Username", Username);
}
boolean ValidateSession(String Username)
{
HttpServletRequest request = this.getThreadLocalRequest();
HttpSession session = request.getSession();
if (session.getAttribute("Username"))
{
return true;
}
return false;
}
}
Is this the correct way to implement these two function???
This LoginSecurityFAQ is a good place to start.
a few correction