Index: lams_common/src/java/org/lamsfoundation/lams/web/session/SystemSessionFilter.java =================================================================== RCS file: /usr/local/cvsroot/lams_common/src/java/org/lamsfoundation/lams/web/session/SystemSessionFilter.java,v diff -u -r1.3 -r1.4 --- lams_common/src/java/org/lamsfoundation/lams/web/session/SystemSessionFilter.java 30 Sep 2005 01:52:51 -0000 1.3 +++ lams_common/src/java/org/lamsfoundation/lams/web/session/SystemSessionFilter.java 10 Oct 2005 02:34:36 -0000 1.4 @@ -40,8 +40,8 @@ */ public class SystemSessionFilter implements Filter { - /** The name of the cookie we use to keep sakai session. */ - public static final String SYS_SESSION_COOKIE = "SYSSESSIONID"; + //The session name to trace shared session + public static final String SYS_SESSION_COOKIE = "JSESSIONID"; public void init(FilterConfig config) throws ServletException { } @@ -55,6 +55,9 @@ return; } + System.out.println(req.getServerName()); + System.out.println(((HttpServletRequest)req).getRequestURI()); + SessionManager.startSession(req, res); //do following part of chain