secure « Session « JSP-Servlet Q&A





1. Looking for a simple, secure session design with servlets and JSP    stackoverflow.com

I'm working on an intranet-only web application (J2EE) that requires some basic security features. There will be relatively few authorized users for the site, but I still need to implement some ...

2. JSP session variables set in a secure page 'https' are not accessible in a normal 'http' page    stackoverflow.com

I am trying to login a user using a jsp over https and i am storing his userid and some more personal info in a session variable session.setAttribute("userid",98767) when i ...

3. servlet set cookie secure?    stackoverflow.com

javax.servlet.http.Cookie implements java.lang.Cloneable
In Cookie method, there is a method call "setSecure" , what does it use for? if i setSecure(true), is there anything i need to do on my client(javascript) side ...