Return-Path: Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 12662 invoked from network); 10 May 2000 18:47:54 -0000 Received: from w131.z208177180.chi-il.dsl.cnc.net (HELO bigbrother.net) (root@208.177.180.131) by locus.apache.org with SMTP; 10 May 2000 18:47:54 -0000 Received: from localhost (sterno@localhost) by bigbrother.net (8.9.3/8.9.3) with ESMTP id NAA29658 for ; Wed, 10 May 2000 13:47:55 -0500 Date: Wed, 10 May 2000 13:47:55 -0500 (CDT) From: Steve Stearns To: tomcat-user@jakarta.apache.org Subject: Re: jsp:include problem In-Reply-To: <852568DB.00631C6C.00@fs_notes.flagstar.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N On Wed, 10 May 2000 Glenn.P.Brauser@flagstar.com wrote: > 1. When attempting to include the same file multiple times in the same > JSP, we get the following compilation error: > > org.apache.jasper.compiler.ParseException: Seen file > /includes/list_bad_errors.jsp already, maybe this is a recursive include?! Yes, I've seen that. In my case what happend was that within file A, I included file B, and then I included file C into file A, but file C also had an include for file B. I only wanted to include B once, so I adjusted my code to fit. So in my case it was a feature not a bug :) > 2. The JSP engine does not always recompile the included file after it has > been updated.