Tagged Questions
The session-management tag has no wiki summary.
8
votes
8answers
6k views
Wordpress session management
I'm putting up a site using Wordpress and I'd like to piggyback on its sessions. But I'm not finding any plugins, or even documentation. Any suggestions or references before I start hacking it?
7
votes
3answers
965 views
Restore Emacs Session/Desktop
I've been searching for how to restore an emacs session, with no luck. I'm looking to restore all previously open buffers, some of which might contain erc, shells, directory listings, files, etc.
...
7
votes
2answers
283 views
How do I structure my Perl CGI program?
We just got our first major Perl CGI assignment in my CS class. Our task is to create an mp3 sharing site that allows users to create accounts, log in, share mp3's. Statistics must be shown of ...
7
votes
2answers
2k views
Using HTTP Digest Authentication on the iPhone
I have an app that communicates with a server that uses HTTP Digest authentication.
It seems to me that the 'session' management within the iPhone is pretty "black box" to us developers. Is it true ...
6
votes
3answers
1k views
tipfy for Google App Engine: Is it stable? Can auth/session components of tipfy be used with webapp?
I am building a web application on Google App Engine that requires users to register with the application and subsequently authenticate with it and maintain sessions. I don't want to force users to ...
5
votes
4answers
3k views
What is session management in Java?
I have faced this question in my Interview as well. I do have many confusion with Session Scope & it management in java.
In web.xml we do have the entry :
<session-config>
...
4
votes
1answer
71 views
NHibernate / Castle.ActiveRecord ; Session-Management ; WinForms
my first real (not test) NHibernate/Castle.ActiveRecord project is developing quickly.
I am working with NHibernate/Castle.ActiveRecord about one month now but still have not a real idea how to ...
4
votes
4answers
133 views
Spring + Hibernate session lifecycle
How properly "lifecycle" of a Hibernate session under Spring should be done?
The SessionFactory is created automatically by Spring and is taking its DB connections from Glassfish connection pool. At ...
4
votes
1answer
699 views
Managing session in REST application after authentication with OpenID
I am building an RESTful application. I plan to use OpenID for user authentication. Currently, I am using LightOpenID for OpenID authentication and I am able to authenticate my users.
My question is ...
4
votes
1answer
488 views
Session Management with Windows Authentication
In an ASP.NET web app, using Integrated Windows Authentication, is the session tied to the windows identity?
In other words, if I login (using IWA) to the app, and the app stores some "stuff" in my ...
3
votes
2answers
565 views
What is the best NHibernate session management approach for using in a multithread windows service application?
I have a windows service application that work with multithread. I use NHibernate in data access layer of this application.
What is your suggestion for session management in this application. I read ...
3
votes
3answers
579 views
session management in web services?
is it possible to manage sessions in web-services? if yes, how to manage session in it? is it similar to sessions we maintain in JSP or PHP? where does the info about the session will be stored, ...
2
votes
1answer
89 views
Spring + Hibernate session management across multiple threads
I am building a system, where each request from a client side spawns multiple threads on server side. Each thread then is using one or more DAOs (some DAOs can be used by more than one thread at the ...
2
votes
1answer
97 views
How to use a shiro native session in a grails web application?
Currently, I am using the default HttpSession object in both controllers and gsp pages:
In controllers:
...
session.mykey = anObject; // adding an object to session
...
if (session.otherkey) { ...
2
votes
1answer
78 views
How can I track sessions (session duration, where user logs in from, etc) using Google's default authentication on Appengine?
I would like to keep track of my users - who logs in, how long they are logged in for, where they log in from, etc. - from my GAE app. I'm wondering what is a good way to do this using the ...
2
votes
2answers
502 views
Logging out a user's other sessions in ASP.NET MVC3 with Forms Authentication
I am building an ASP.NET MVC3 app using Forms Authentication and I'd like to log out all existing sessions for a user when that user logs in. I'm trying to prevent multiple people at different ...
2
votes
2answers
242 views
Raven DB session management in WCF
I have a WCF service that accepts requests, performs some work and saves result to Raven DB. I am thinking that the session management shall be similar to NHibernate with WCF, but I am not sure. ...
2
votes
1answer
993 views
Jquery Shopping Cart Plugin: Implementing Session Management
Am using jquery shopping cart http://plugins.jquery.com/project/smartcart2
Can anyone help me in implementing onAdded, onRemoved, onUpdated methods in order to make Ajax call to maintain session on ...
2
votes
2answers
1k views
GWT session management doubt
I don't too much about gwt session on java. I've some doubts about it. Anyone can check if the implementation below is the way it needs to be done.
public class ServiceImpl extends ...
2
votes
2answers
533 views
What is wrong with my Spring Hibernate Transaction Management Configuration?
I am using Spring 2.5.5. Hibernate3.2. and MySQL.
I was getting:
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
at ...
2
votes
2answers
991 views
Nhibernate, WinForms, Castle Windsor: Session Management
I know the question of session management has been brought up in the past, but I could not find anything that helps me overcome my problem..
I have a number of repository classes (e.g ...
2
votes
1answer
587 views
Session Id Management in Servlets
I am having some issues with my web application while doing a performance test with Jmeter. My question is not around Jmeter instead, it's around a simple Servlet session management behavior.
So we ...
2
votes
1answer
576 views
Groovy session. How to find the user name
Hi
I am developing an application under Groovy using scafoldig.
We are using the Acegi plugin for security.
We have a class called ChangeManagement defined as follows (simplified version)
class ...
2
votes
2answers
959 views
Rails: tracking a user's ID
In my Rails app, I have a login page. After that person logs in, what is the best way for my app to continue tracking the person that has logged in. For example, if the user moves to different pages, ...
1
vote
1answer
35 views
Can not understand the session object behavior
I am confused on the documentation of the javax.servlet.http.HttpSession.
It says:
Sessions are used to maintain state and user identity across multiple
page requests. A session can be ...
1
vote
1answer
39 views
Spring 3.1 MVC framework Session Management
In my web application , am annotation based controllers (SPRING MVC). I wanted to implement SessionManagement in my application
1.) Any page within the application should not be idle for 15 minutes
...
1
vote
2answers
190 views
Difference between java bean and session for session management in jsp
When managing the user session in jsp, we sometime use sessions by setting varialble using session.setAttribute() and on the otherhand we can create java bean object(setting scope to session) to store ...
1
vote
1answer
132 views
What is the usage of Session.Merge method in NHibernate?
What is the usage of Session.Merge method in NHibernate?
When can we use of this method?
1
vote
1answer
443 views
Generic Repository session management asp.net-mvc fluent nhibernate
I have gotten into a problem with my project. I am using a generic repository with structure map together with Fluent NHibernate. Everything works rather well, but when it comes to transactions and ...
1
vote
2answers
357 views
How and where to store nhibernate session in winforms per request
Background
I've read all kinds of blogs and documentation about nhibernate session management. My issue, is I need it for both winforms and webforms. That's right, I'm using the same data layer in ...
1
vote
1answer
257 views
custom session state management
Can someone point me to example implementation for custom session state management ?
I am looking for following approach "keep all the session state in database and keep only the keys in HttpSession ...
1
vote
1answer
367 views
NHibernate Repository pattern problem
I am using NHibernate and Repository patterns in my application. But not want to use UnitofWork pattern.
There are two types of forms in my app. Collection/Picker forms and Entity forms.
But the ...
1
vote
2answers
447 views
Asp.net session management in load balance environment
Any recommendations for transition from single server to load balancing environment of 3 servers?
I considered using Sql Server session management, but I am storing linq2sql objects in session which ...
1
vote
1answer
3k views
Spring Security: Redirect to invalid-session-url instead of logout-success-url on successful logout
I have implemented a login-logout system with Spring Security 3.0.2, everything is fine but for this one thing: after I added a session-management tag with invalid-session-url attribute, on logout ...
1
vote
4answers
944 views
Pitfall of storing dataTable(10,000 rows) in a session variable?
Consider my dataTable contains 10,000 rows and i want to know the pitfall of storing datatable in a session variable... I want to use it until a new row has been added...
What type of session mode ...
1
vote
2answers
571 views
Which Perl session management library works well with TemplateToolkit?
I've considered CGI::Application and CGI::Session. Of the two, CGI::Session seems more promising. CGI::Application model, however, doesn't look like it would work well with Template Toolkit. (Am I ...
1
vote
2answers
1k views
Useing Oracle 10g database for ASP.NET session management
I am developing a web application.
For some reasons, I need to use external storage for storing session state.
As I am using Oracle 10g as backend database, can I use same oracle 10g db for storing ...
1
vote
2answers
329 views
Implementing own Session Management in ASP.NET
What options are there to implement an own session management in ASP.NET?
I just found one older solution about "highjacking" the built-in session management.
Is there a nice way to implement a ...
0
votes
0answers
13 views
Merging web applications into one central web app
I have more than 5 different web applications running currently as an individual.
Let me give some brief about them all. They all are almost using same username and password from one database.Also ...
0
votes
0answers
58 views
how to authenticate user in web service
I have write two method to provide info for user in web service in spring. when the user call the first method using url http://localhost:8080/billingEngine/showsoa.xml using username and password, ...
0
votes
2answers
113 views
Struts2 - Does invalidate() method of SessionMap really invalidate sessions?
i'm using in my actions a SessionMap (org.apache.struts2.dispatcher.SessionMap<K,V>) to track my sessions.
I also use the method invalidate() provided by SessionMap for logout.
Using the webapp ...
0
votes
0answers
82 views
Best practice for centralized web service authentication handling
I have an app that utilizes several web services to pull data throughout its lifespan. It's possible (and likely) that the user's session cookie will expire during normal use.
I've built a common ...
0
votes
3answers
173 views
Session Handling without Cookies and URL rewriting
I have an old web site(servlets, JSP and Struts). Currently session management handled by using cookies. I wanted to redesign this site to make browser independent.
I know there is an alternate - ...
0
votes
2answers
83 views
Session Management and Security
This is my current session management:
if(!isset($_SESSION["user"]["authenticated"]) ||
!$_SESSION["user"]["authenticated"])
redirect("login.php");
if($_SESSION["user"]["browserHash"] != ...
0
votes
0answers
28 views
prevent ihttphandler from recursive call
I have created a Http Handler, which is called at every request to the application. The purpose for this handler was to check if request has session or not, if not then redirect it to login page else ...
0
votes
2answers
143 views
can I discover another users LTPA2 token on the machine / in the browser?
If you put sit Paros on the traffic between your browser and a web application being hosted in WebSphere, you will have two session identifiers passed as part of the cookie section of the HTTP ...
0
votes
0answers
192 views
Joomla! 1.6 Frontend Autologoff
Ok, I have an interesting challenge. I am using Joomla! 1.6.3 with the Jumi extension to make an intranet solution that allows registered users to create records in a MySQL database. I thought that, ...
0
votes
1answer
107 views
How to subclass concurency control in spring, and what exception is thrown?
Right now in Spring security I have this code:
<session-management>
<concurrency-control max-sessions="1" error-if-maximum-exceeded="true" />
</session-management>
If someone ...
0
votes
4answers
379 views
Storing user session variables in file vs in database
I've got a php application and I'm saving the session variables for the user using $_SESSION itself. Is there any particular advantage of storing it in a database?
I'm looking for a reliable / ...
0
votes
1answer
411 views
iPhone App / Web App Session Theory
In PHP, you manage the Session on the server... accessing any of the session properties there on the server along side your web application.
How does this translate to an iPhone App? If I'm ...