Tagged Questions
The httpsession tag has no wiki summary.
18
votes
1answer
16k views
How to store session in Spring MVC
What's the best way of storing session related data of a user (like, for example a log of recent actions a user has done) in a Spring MVC (2.5) web application ?
Using the classic ...
9
votes
2answers
95 views
Storing Anything in ASP.NET Session Causes 500ms Delays
The Problem:
When you use session in an ASP.NET site, it causes dramatic delays (multiples of 500ms) when loading multiple requests at nearly the same time.
More Specifically, My Problem
Our ...
6
votes
2answers
2k views
JSF - Session-scoped managed bean does not have dependencies re-injected on session deserialization
I'm not sure if what I'm doing is wrong, or if I just missed an annotation or configuration item somewhere. Here's the situation:
I have a JSF application with a session-scoped bean named ...
6
votes
2answers
440 views
How is HttpSession implemented?
I just finished taking a final exam on web applications. Capping off what had been a rather easy (albeit lengthy - 12 pages) exam was a question asking us to code an implementation of sessions, ...
6
votes
3answers
1k views
Access session of another web application
Is it possible to configure two separate web apps (WAR) in a J2EE application (EAR) to access a shared session context?
Further info:
I ended up creating a shared class from the EAR which stored the ...
5
votes
3answers
210 views
Implementing a generation of HttpSession key
I am trying to implement a generation of HttpSession key
I am generating a random number between 1,000,000 to 9,999,999 and send it as a cookie to the user.
Is it possible to make this process ...
5
votes
3answers
372 views
How can I write extensions for Session without having to write separate methods for HttpSessionState and HttpSessionStateBase?
I wrote the following extension methods for Session so that I can persist and retrieve objects by their type. This works well for my solution, but I ended up having to duplicate my extension methods ...
4
votes
1answer
3k views
How to invalidate session in JSF 2.0?
What is the best possible way to invalidate session within a JSF 2.0 application? I know JSF itself does not handle session. So far I could find
private void reset(){
HttpSession session = ...
4
votes
1answer
2k views
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 ...
4
votes
1answer
1k views
Tomcat, keep session when moving from HTTPS to HTTP
I have a Java application running on Tomcat 6.0.29, with Apache 2.2.3 in front.
The login page uses HTTPS, while most pages use HTTP.
If a user tries to access a page (HTTP) that is login protected, ...
4
votes
3answers
352 views
How unique is HttpSession.getId()?
Is the value returned by HttpSession.getId() guaranteed to be unique across time -- or only unique among all active sessions?
In other words, can I use it as a key for a session log entry (which user ...
4
votes
3answers
243 views
What prevents HttpSession's id from being stolen?
The question title pretty much says it all. In the java Servlet API, what is done to ensure that someone's session id is not stolen?
For example, if I had an active session and someone somehow get a ...
4
votes
3answers
4k views
Generating a new ASP.NET session in the current HTTPContext
As a result of a penetration test against some of our products in the pipeline, what looked to be at the time an 'easy' problem to fix is turning out to be a toughy.
Not that it should of course, I ...
3
votes
1answer
120 views
ensuring per user request processing serialization in GAE/J
The default mode of google appengine is that each instance runs in single threaded mode. They handle concurrent requests by spawning new JVM instances if it is required.
A new switch though allows ...
3
votes
1answer
344 views
Spring Server/Client Sessions and Hibernate Sessions
I use Spring 3 and Hibernate 3.6 for developing a webapplication - Im new and Im wondering if I really understand how sessions are working.
Is it correct, that the Sessions between Server and ...
3
votes
1answer
181 views
Google App Engine how to track httpsession destroy
anybody knows how to track httpsession destroy with GAE?
I've found that HttpSessionListener doesn't work properly in GAE and sessionDestroyed method never calls.
To be more specific I have an ...
3
votes
1answer
239 views
A new HttpSession for each request?
I've always taken for granted the JSESSIONID cookie created for every fresh request for a given client when developing applications using the servlet specification. But after giving it a bit of ...
3
votes
4answers
2k views
Measuring the Size of HttpSession object
Is there a clean and easy way to measure it other than programatically measuring the size of each data type (that each object is composed of) stored in session?
2
votes
1answer
44 views
How to check when the user is logged out by session expiration
I have JSF web app on glassfish using j_security_check validation with jdbcRealm on glassfish connected to MSSQL db.
Is there any way to check for example if there exists active bean with given ...
2
votes
1answer
45 views
HttpSession safe
Where is servlet HttpSession stored?
Is it safe to store sensitive information in HttpSession attributes.
Can user maliciously modify session attributes?
2
votes
1answer
848 views
Spring session-scoped beans as dependencies in prototype beans?
I read spring docs on this subject several times, but some things are still unclear to me.
Documentation states:
If you want to inject (for example) an HTTP request scoped bean into another bean, ...
2
votes
4answers
773 views
Java HttpSession
Is HttpSession in java servlet is created only after
HttpSession s = request.getSession();
?
In my code I didn't write that, but when I use if (request.getSession(false) == null) ..., it doesn't ...
2
votes
2answers
3k views
Accessing HttpSessionState (HttpContext.Current.Session) from another thread or tricks?
We have a web site which implements a central HttpSessionState management in App_Code like this:
public static class CurrentSession
{
public static HttpSessionState Session
{
get
...
2
votes
3answers
114 views
Java Servlets and HttpSessions
Very basic question.
I have a portal containing several servlets, one of which takes care of logging in (but only as an admin). How do I use HttpSessions between Servlets to know if the admin is ...
2
votes
1answer
286 views
Forcing creation of HttpContext.Current.Session in .NET
I'm working on an application that uses .NET's StaticFileHandler to serve up dynamically generated content...
There is also another part of our application that uses the current HttpSession to store ...
2
votes
3answers
829 views
How to get the IP address when a session is created?
In my grails application, I have implemented the interface HttpSessionListener to listen for session creation as given below:
class MyHttpSessionListener implements HttpSessionListener {
public ...
2
votes
5answers
340 views
PHP's real SESSION object
EDIT: (UPDATED)
Maybe my question was not clear enough. Ok, lets put it this way:
$arr["a"] = 10;
var_dump($arr);
$arr["b"] =& $arr["a"];
var_dump($arr);
the first var_dump returns:
array
...
2
votes
2answers
2k views
How to obtain an HttpSession Object from SessionID?
I want to invalidate sessions of users based on some Event. I store their sessionID, how to get their HttpSession from this ID?
The HttpSessionContext class is deprecated with no replacement.
1
vote
1answer
60 views
Connecting a Scope with an HttpSessionListener
I am writing an web application that allows people to collaborate. I would like to have some of my services scoped to the collaboration (which involves a few people) rather than to any individual http ...
1
vote
1answer
53 views
Where is the HttpSession data stored?
HttpSession is a high level interface built on top of cookies and url-rewriting, which means that there is only a session ID is stored in client side and the data associated with it is stored in ...
1
vote
0answers
97 views
Liferay/Tomcat 7 with SSL gets no session with DNS
I'm a little bit confused.
I have configured a Liferay/Tomcat 7 Server with SSL (https:8443) which works correctly.
Everything works fine, if I call the server by ip, so like https://192.168.4.44 or ...
1
vote
1answer
79 views
ASP.NET Forms Authentication Cookie and Sessions for additional data
Application Background
Security:
The applications are all hosted on a private extranet (and / or a local intranet - depending on the installation instance). So while security is important, it's not ...
1
vote
0answers
40 views
HttpSessionState null using CassiniDev
I am trying to build some unit test using CassiniDev.
First of all I create a Server and a Page and generate a request:
CassiniDevServer server = new CassiniDevServer();
server.StartServer("C:\\", ...
1
vote
1answer
214 views
how to implement custom http session in java?
I will need to implement my own version of HttpSession in Java. I have found very little information which explains how achieve such a feat.
I guess my problem is - how do I override the existing ...
1
vote
1answer
141 views
Java HttpSession problem with ISA Server 2006
I hope you can help me, because I try to find answers on internet but I didnt find anything about this.
Problem: I have a common java web application (first page is login and then system options) ...
1
vote
0answers
66 views
Is it possible for Http Session Invalidation to occur because of an overload on the Server?
I have reaccuring random Invalidations of User Http Sessions resulting
in loss of temporary data on an Oracle IAS 10.1.2
with Oracle Container for Java J2EE Container. (Java 1.4)
Framework is ...
1
vote
1answer
293 views
Spring Security: same SecurityContext-instance in multiple ThreadLocals, how does that work?
Ive some questions about Spring Security 3.0.5 and the SecurityContext. First of all, Ill try to conclude what I know:
SecurityContextHolder stores SecurityContext
Between Request, SecurityContext ...
1
vote
0answers
599 views
Spring security concurrent-session and HttpSessionListener problem
I have implemented HttpSessionListener and it works fine except for the case when a logged in user concurrently logs in a second time. Spring terminates the first session correctly, but the ...
1
vote
2answers
349 views
Where are the Java HttpSession attributes stored?
Are the objects serialized and sent to the user and back on each connection (stored in cookies) ?
Or are they stored in the server heap and the cookie is only a very small identifier ?
Any ...
1
vote
2answers
298 views
Sessions in Restlet?
I have just implemented my first Restlet application (finally :]) and now I'm onto a bigger question. I built a really simple resource called LoginResource, which allows a POST and a GET operation to ...
1
vote
2answers
128 views
Implementation of a Session-ID as part of HttpSession?
I am developing a new kind of an HttpServer,
I would like to support the HttpServer Java-like functionality
how does one implement such a feature?
All I know is that you need to generate a long ...
1
vote
1answer
527 views
Jetty http session is always null (Embedded Container, ServletHolder)
I am trying to implement a simple servlet which uses a HTTP session in
an embedded jetty (7.3.0 v20110203) container. To start jetty I use the following code:
Server server = new Server(12043);
...
1
vote
1answer
812 views
Getting SessionScoped bean from HttpSessionListener?
Hey guys. I'm trying to get a session bean in a HttpSessionListener so that when the user logs out or the session expires I can delete some files that the user created in the application. I'm ...
1
vote
2answers
465 views
Beans serialization in JSP
Why some times tutorials make beans implement Serializable object and others do not?
I know that object should be serialized when I want to send it through a network, so does that prove that each bean ...
1
vote
1answer
278 views
Tomcat session idle does not work due to Ajax
In my web application(jsp/servlet) there is a web page which create Ajax request periodically to grab the latest data from the server.This page is the main page which is always open once user log in ...
1
vote
0answers
99 views
problem of httpsession and cookie
1)what is the difference of session and cookie.
I know the cookie is stored at client-side,and the session in server-side.
But I wonder what is the realation ship of them?
Someone tell me that ...
1
vote
3answers
313 views
maintaining persistent http connection
My android app sends data to a servlet every 10 seconds. the servlet receives the very first request and responds back. but the servlet doesn't receive the second set of data that the client sends ...
1
vote
2answers
2k views
How do I get a list of all HttpSession objects in a web application?
Let's say I have a running Java-based web application with 0 or more valid HttpSession objects associated with it. I want a way to access the current list of valid HttpSession objects. I was thinking ...
1
vote
2answers
440 views
In grails, how do I get a reference to all current sessions?
I'd like to list all current sessions in an Admin Controller in grails. What's the easiest way to get a reference to e.g. a Collection of sessions from the controller?
1
vote
0answers
349 views
cannot use HttpSession.setAttribute method when compiling via JavaCompiler tool library
I am using the following code to generate and compile java program inside another java program:
import javax.tools.*;
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
compiler.run(null, ...