Return-Path: Mailing-List: contact watchdog-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list watchdog-dev@jakarta.apache.org Received: (qmail 9890 invoked by uid 500); 4 Oct 2000 00:07:28 -0000 Delivered-To: apmail-jakarta-watchdog-4.0-cvs@apache.org Received: (qmail 9887 invoked by uid 1193); 4 Oct 2000 00:07:27 -0000 Date: 4 Oct 2000 00:07:27 -0000 Message-ID: <20001004000727.9886.qmail@locus.apache.org> From: santosh@locus.apache.org To: jakarta-watchdog-4.0-cvs@apache.org Subject: cvs commit: jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/session negativeSession.jsp positiveSession.jsp positiveSessionDefault.jsp santosh 00/10/03 17:07:27 Added: src/server/jsp-tests/jsp/core_syntax/directives/page/session negativeSession.jsp positiveSession.jsp positiveSessionDefault.jsp Log: watchdog 4.0 Revision Changes Path 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/session/negativeSession.jsp Index: negativeSession.jsp =================================================================== negativeSession <% /** Name: negativeSession Description: Set the value of the session attribute to "false". Then try to invoke a method on the implicit session object. Result:Fatal translation error **/ %> <%@ page session="false" %> <% out.println("got "+session.isNew()); %> 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/session/positiveSession.jsp Index: positiveSession.jsp =================================================================== positiveSession <% /** Name : positiveSession Description:Set the value of the session attribute to "true". Then try to access the implicit session object and call one of its methods Result: Returns the output of the method invoked on the session object **/ %> <%@ page session="true" %> <% out.println("got "+session.isNew()); %> 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/session/positiveSessionDefault.jsp Index: positiveSessionDefault.jsp =================================================================== positiveSessionDefault <% /** Name : positiveSessionDefault Description:Do not set the value of the session at all. Try to invoke a method on the implicit session object. Result: Returns the output of the method invoked on the session object. **/ %> <% out.println("got "+session.isNew()); %>