Re: access to all sessions

2008-12-10 Thread Timothy J Schumacher
Hi Leon, How bad of an idea is it to set privileged=true in my context? Wouldn't this give me access to the things I want (and much more that I probably don't want access to)? Our environment is such that maybe this isn't totally out of the question, we run TC in a piece of hardware to serve

Re: access to all sessions

2008-12-05 Thread Pieter Temmerman
LambaProbe's (http://www.lambdaprobe.org) features overview says : "Ability to expire selected sessions". Not sure if this is what you're looking for? Cheers. On Thu, 2008-12-04 at 12:09 -0700, Timothy J Schumacher wrote: > Hi Leon, > > Thanks for the info. So, if I simply wanted to tell TC to

Re: access to all sessions

2008-12-04 Thread Leon Rosenberg
It depends on your definition of easier... you could provide your own session manager with your own session implementation, which supports such a mechanism or patch the existing StandartSession.java. I don't know whether you'd call it easy :-) Leon On Thu, Dec 4, 2008 at 8:09 PM, Timothy J Schum

Re: access to all sessions

2008-12-04 Thread Timothy J Schumacher
Hi Leon, Thanks for the info. So, if I simply wanted to tell TC to invalidate all sessions is there something easier I could do? Tim Leon Rosenberg wrote: Hello Tim, there is no easy and direct way to do it. What you can do is to create a SessionListener (http://java.sun.com/javaee/5/docs/

Re: access to all sessions

2008-12-04 Thread Leon Rosenberg
Hello Tim, there is no easy and direct way to do it. What you can do is to create a SessionListener (http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpSessionListener.html), register it as listener in the web.xml and store references to the sessions upon creation somewhere (read map). B

access to all sessions

2008-12-04 Thread Timothy J Schumacher
Hi, I have TC 5.0.12 and java 1.4.1_04. Unfortunately, I am stuck using these versions for now... I am trying to figure out how to access/manipulate all the sessions for my web app. I guess I want something similar to the manager application, but I don't want to have to run the manager app