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 display the f
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=
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]
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
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
> 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
suggested, you co
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