Top "Httpsession" questions

An Java interface used by the servlet container to create a session between an HTTP client and an HTTP server.

java.lang.IllegalStateException: getAttribute: Session already invalidated

I am getting the following exception after I invalidate the portletRequest session in my code Aug 27, 2013 7:07:13 AM org.apache.catalina.…

java spring session spring-mvc httpsession
How can i load Java HttpSession from JSESSIONID?

I want to get Java HttpSession by JSESSIONID. Is it possible? If yes, how?

java servlets httpsession
Java HttpSession

Is HttpSession in java servlet is created only after HttpSession s = request.getSession(); ? In my code I didn't write that, …

java httpsession
JSF logout using session.invalidate does not clear the current username?

In my JSF application, I get the name of the currently signed in user like this ... public String getLoggedInUsername() { return …

jsf httpsession
How to access the session from a Java class

I need to write a small Java class that will enable me to add to and read from the current …

java servlets httpsession
How to create session for login and logout in java

This is the code that I have written in login page HttpSession session = request.getSession(true); session.setAttribute("name", user1); …

java jsp httpsession
Grails get Session and Management in Service class

I have a problem with Grails Session. I was thinking about having a Service Class for my session handling. So …

session grails service nullpointerexception httpsession
HTTPSession with GWT

I'm new in GWT ... I would like to implement sessions in my Web App Basically I want that a session …

java gwt widget gwt-rpc httpsession
Can JavaScript read HTTP Session object?

Is it possible to read the value of a dynamic variable like httpRequest.getSession("attr_name") from within a JavaScript?

javascript httpsession
How to inject dependencies into HttpSessionListener, using Spring?

How to inject dependencies into HttpSessionListener, using Spring and without calls, like context.getBean("foo-bar") ?

spring servlets dependency-injection httpsession servlet-listeners