You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ak...@hyperreal.org on 1999/11/13 02:25:20 UTC

cvs commit: jakarta-tomcat/src/examples/jsp/dates date.jsp

akv         99/11/12 17:25:19

  Modified:    src/examples/jsp/dates date.jsp
  Log:
  disabled session; causes OutOfMemoryException if you make repeated requests
  to a JSP page because by default JSP pages are session enabled.
  
  Revision  Changes    Path
  1.3       +2 -0      jakarta-tomcat/src/examples/jsp/dates/date.jsp
  
  Index: date.jsp
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/examples/jsp/dates/date.jsp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- date.jsp	1999/10/20 23:17:47	1.2
  +++ date.jsp	1999/11/13 01:25:18	1.3
  @@ -4,6 +4,8 @@
     reserved.
   -->
   
  +<%@ page session="false"%>
  +
   <body bgcolor="white">
   <jsp:useBean id='clock' scope='page' class='dates.JspCalendar' type="dates.JspCalendar" />