in asp there's an Application object, which is like the Session but it's shared among all sessions...
http://msdn.microsoft.com/en-us/library/ms525360.aspx
You can use the Application object to share information among all users of a given application. An ASP-based application is defined as all the .asp files in a virtual directory and its subdirectories. Because the Application object can be shared by more than one user, there are Lock and Unlock methods to ensure that multiple users do not try to alter a property simultaneously.
I use this object to implement a simple cache for small sets of data...
What is java / jsp equivalent?
thanks a lot...