RE: Help on application scope

2001-07-09 Thread Cox, Charlie
Title: RE: Help on application scope See notes below -Original Message- From: Michael Wentzel [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 07, 2001 5:24 PM To: 'ericdev' Cc: '[EMAIL PROTECTED]' Subject: RE: Help on application scope I tried to do a Singleton Instance

RE: Help on application scope

2001-07-07 Thread Michael Wentzel
I tried to do a Singleton Instance of a class containing a Hashmap of entried mapping IPs to session objects to be used later for session invalidation. I instantiate the singleton instance with a generic servlet, but I dont think it worked when I started the server because I didnt see

RE: Help on application scope

2001-07-06 Thread Michael Wentzel
Dear all, I used a java.util.HashMap for session invalidation in my JSPs. It is declared as such in 2 jsps: jsp:useBean id=monitor class=java.util.HashMap scope=application / (GalleryViewBottom.jsp and Logout.jsp)