Yep, session tracking is the way to go.
I use a similar logic to persist my DB connections on a per client basis.  I
also noticied that this object in theory could be pickedup by any servlet (not
just the one that created it), which is kinda cool (espicially with DB
connections).
Let me know, I will be more than happy to share snippet's of code to do this.

- Nanu.


"David S. Soleno" wrote:

> Is it possible to pass object references between servlet invocations?
>
> For instance,
>   If a user invokes my servlet from a browser my servlet uses helper
> classes to instantiate an Object (from a custom class) that encapsulates
> information about that particular request.  My servlet then outputs an HTML
> page that contains a link at the bottom which allows the user to
> 'continue'.  The 'continue' link just reinvokes my servlet with different
> parameters to respond differently.  What I really need to do is have the
> Object created in the first invocation persist through the second
> invocation and then give the second invocation of the servlet a reference
> to it.  Is this possible?  Perhaps with the Session objects?  I'm
> inexperienced with Session objects so is someone could help me get going in
> the right direction it would be much appreciated.
>
> David S. Soleno
> SciberNet, Inc.
> Tel: (619) 824-0840
> Fax: (619) 824-0846
> e-mail: [EMAIL PROTECTED]
>
> ___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to