Just use request.getSession(). The session is not specific to a servlet but to the user. Each time they send a request to the server their session id is sent in the request (via a cookie or url rewriting). You can retrieve the session in any servlet using request.getSession()
Steve > -----Original Message----- > From: Susana Ruiz Mata [mailto:[EMAIL PROTECTED] > Sent: May 27, 2003 7:24 PM > To: [EMAIL PROTECTED] > Subject: session > > > How do I obtain the session made in one servlet from another servlet?? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

