Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningStarterAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningStarterAction.java,v diff -u -r1.17 -r1.18 --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningStarterAction.java 18 Dec 2005 23:19:58 -0000 1.17 +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningStarterAction.java 30 Dec 2005 11:44:47 -0000 1.18 @@ -126,7 +126,8 @@ return validateParameters; } - Long toolSessionID=(Long) request.getSession().getAttribute(TOOL_SESSION_ID); + //Long toolSessionID=(Long) request.getSession().getAttribute(TOOL_SESSION_ID); + Long toolSessionID=(Long) request.getSession().getAttribute(AttributeNames.PARAM_TOOL_SESSION_ID); logger.debug("retrieved toolSessionID: " + toolSessionID); /* * By now, the passed tool session id MUST exist in the db through the calling of: @@ -407,7 +408,8 @@ /* * process incoming tool session id and later derive toolContentId from it. */ - String strToolSessionId=request.getParameter(TOOL_SESSION_ID); + //String strToolSessionId=request.getParameter(TOOL_SESSION_ID); + String strToolSessionId=request.getParameter(AttributeNames.PARAM_TOOL_SESSION_ID); long toolSessionId=0; if ((strToolSessionId == null) || (strToolSessionId.length() == 0)) {