| Author |
How to maintain session in swing?
|
Rahul Raj cochin
Greenhorn
Joined: Mar 29, 2012
Posts: 9
|
|
Can anyone tell me how to maintain session in swing desktop applications?
I want to maintain session for user logins and sessions to be invalidated when logout from application.
I know the session implementation in JSF. Is there a way to do this in swing?
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 4164
|
|
Rahul, please BeForthrightWhenCrossPostingToOtherSites
http://www.java-forums.org/awt-swing/59480-how-maintain-session-swing.html
|
luck, db
There are no new questions, but there may be new answers.
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3792
|
|
The thing is, sessions in a web application are a way of coping with the fact that HTTP is a stateless protocol. But if you're in a desktop application, you can easily maintain the state as long as the application is running - just keep the data in memory. In a standalone application you don't need the concept of a session at all.
It might be different in a client-server setup. But even then, it's trivial for a client to maintain state.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
You can use a WindowListener to be notified when the frame is closed. You can use it to log the user out.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: How to maintain session in swing?
|
|
|