Session management in swing

HI,How to create sessions in swing.Is there any technique to create session in swing,Help me,Thanks in advance
[145 byte] By [kalyan_bikkania] at [2007-11-26 12:55:35]
# 1
Define session.
zadoka at 2007-7-7 16:49:15 > top of Java-index,Desktop,Core GUI APIs...
# 2
Thanks for replybut it is client side,How can i get request object in swing
kalyan_bikkania at 2007-7-7 16:49:15 > top of Java-index,Desktop,Core GUI APIs...
# 3
> Thanks for reply> > but it is client side,> > How can i get request object in swingDefine: request object.You seem to be trying to program a web app in Swing. Do you know what you are doing?
zadoka at 2007-7-7 16:49:15 > top of Java-index,Desktop,Core GUI APIs...
# 4

"How can i get request object in swing"

You can't really, as the previous response implied. A swing app with run in a separate JVM from the web server. You could pass a session id or other needed information like so

<jnlp codebase="">

<argument sessionid="1099"> </argument>

</jnlp>

or similar for <applet> tag.

Then retrieve that value(as argument or parameter) in your swing code.

mpmarronea at 2007-7-7 16:49:15 > top of Java-index,Desktop,Core GUI APIs...