Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 24977 invoked by uid 500); 7 Aug 2001 01:16:12 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: tomcat-dev@jakarta.apache.org Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 24968 invoked from network); 7 Aug 2001 01:16:12 -0000 Errors-To: Message-ID: <004c01c11ede$8f189350$6401a8c0@bandiniventures.com> From: "Andrew Arrow" To: Subject: Date: Mon, 6 Aug 2001 18:16:16 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2479.0006 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2479.0006 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N I added this to my web.xml file: com.mystuff.SessionListener I put a HashTable in the class and add each session to the table every time sessionCreated is called. I'd like to be able to access the same instance of com.mystuff.SessionListener that Tomcat is using from a jsp page. (i.e. I want the JSP page to display a list of all the sessions in the hashtable.) If I say: I'll get a new instance of the class right? I want the SAME instance. Anyway to do this?