0
votes
3answers
348 views
Java Servlet/JSP Cookie Disconnect
Hey guys.
I'm having a strange issue with cookie visibility between an authentication servlet and our actual jsp. We're using a servlet to authenticate that the user is a valid user, and if …
14
votes
Simple Getter/Setter comments
I'd say only worry about commenting getters and setters if they have some sort of side effect, or require some sort of precondition outside of initialization (i.e.: getting will remove an item from …
0
votes
Java Servlet/JSP Cookie Disconnect
Actually, it turned out to be a path issue. I know I didn't paste any code, but I was creating the cookie without setting a path, so the cookie was only visible within the servlet directory. Once I …
