Hello,
I'm trying to add the session tracking feature to a 12 year old java web application. Which uses MVC pattern with jsp and servlets. We need to make it work if cookies are disabled.
I like to know what is the best way to implement session tracking to this application? :)
and when i use getRequestDispatcher, do i need to use encodeURL ? like this ?
getRequestDispatcher(res.encodeURL(jspname));
Thanks...