How do I get the effect of an "application-scoped" variable, in the sense that I can set a varable to a value in one request, and be able to retrieve that value during another request regardless of whether the two requests are related (e.g. same session).
This would be very similar to setting an attribute in a ServletContext in J2EE, for comparison.
Thanks.