Re: User tracking/monitoring

2009-06-01 Thread Tim Funk
Already answered in this thread here: http://www.nabble.com/Re%3A-User-tracking-monitoring-p23792941.html -Tim Chetan Chheda wrote: I had to add <%= request.getSession().getId()%> for it to display the sessionId. Tim, Can you elaborate on what the side effects would be to displ

Re: User tracking/monitoring

2009-06-01 Thread Chetan Chheda
Users List Sent: Monday, June 1, 2009 11:54:26 AM Subject: Re: User tracking/monitoring The snippet I post was the snippet.  (if you are using jsp) But it can have security side effects. A safer snippet might be this: <%@ taglib uri="http://java.sun.com/jsp/jstl/functions"; prefix=

Re: User tracking/monitoring

2009-06-01 Thread Tim Funk
The snippet I post was the snippet. (if you are using jsp) But it can have security side effects. A safer snippet might be this: <%@ taglib uri="http://java.sun.com/jsp/jstl/functions"; prefix="fn" %> ${(fn:split(pageContext.session.id, '.')[fn:length(fn:split(pageContext.session.id, '.'))-1]

Re: User tracking/monitoring

2009-06-01 Thread Chetan Chheda
29, 2009 1:59:01 PM Subject: RE: User tracking/monitoring > From: Chetan Chheda [mailto:chetan_chh...@yahoo.com] > Subject: User tracking/monitoring > > Is there anyway we can add the tomcat sessionID to their page so > that they can tell us where they are? Besides adding it to some

Re: User tracking/monitoring

2009-05-30 Thread Rainer Jung
On 29.05.2009 18:58, Tim Funk wrote: > Add this to your footer? > SESSION ID: ${pageContext.session.id} Beware though, that in some security sensitive contexts this is not adequate, e.g. if users print out or save pages and share those with others, session takeover is made much more simple (at lea

RE: User tracking/monitoring

2009-05-29 Thread Caldarale, Charles R
> From: Chetan Chheda [mailto:chetan_chh...@yahoo.com] > Subject: User tracking/monitoring > > Is there anyway we can add the tomcat sessionID to their page so > that they can tell us where they are? Besides adding it to some common component of each page of the web site as Tim

Re: User tracking/monitoring

2009-05-29 Thread Tim Funk
Add this to your footer? SESSION ID: ${pageContext.session.id} -Tim Chetan Chheda wrote: All, In our production environment we load balance across 4 tomcats that are split among 2 physical servers. This is a high traffic website and we get calls from users for a number of support issues

User tracking/monitoring

2009-05-29 Thread Chetan Chheda
All, In our production environment we load balance across 4 tomcats that are split among 2 physical servers. This is a high traffic website and we get calls from users for a number of support issues and for most of these issues the first step is to find out what tomcat instance they ended