Return-Path: Delivered-To: apmail-jakarta-tomcat-user-archive@jakarta.apache.org Received: (qmail 92767 invoked by uid 500); 1 Oct 2001 20:29:38 -0000 Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: tomcat-user@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 92756 invoked from network); 1 Oct 2001 20:29:38 -0000 Date: Mon, 1 Oct 2001 13:27:41 -0700 (PDT) From: "Craig R. McClanahan" Sender: To: Tomcat User List Subject: Re: Tag Problems when Compiling Against New Servlet.jar In-Reply-To: Message-ID: <20011001132705.W15920-100000@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: localhost 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N These are exactly the errors you would get if you didn't have servlet.jar in your compile classpath at all -- double check your CLASSPATH to ensure that you're pointing at the right place. Craig On Mon, 1 Oct 2001, Hunter Hillegas wrote: > Date: Mon, 01 Oct 2001 12:15:12 -0700 > From: Hunter Hillegas > Reply-To: tomcat-user@jakarta.apache.org > To: Tomcat User List > Subject: Tag Problems when Compiling Against New Servlet.jar > > I just started compiling my servlet/taglibs against the servlet.jar included > with Tomcat 4. > > Now my taglibs are spouting a TON of errors when they used to cleanly > compile... Some are like this: > > classes/com/guerrillabroadcasting/groundswell/tags/IterateTag.java:22: > cannot resolve symbol > symbol : variable SKIP_BODY > location: class com.guerrillabroadcasting.groundswell.tags.IterateTag > return SKIP_BODY; > > > -- and -- > > classes/com/guerrillabroadcasting/groundswell/tags/IterateTag.java:25: > cannot resolve symbol > symbol : variable pageContext > location: class com.guerrillabroadcasting.groundswell.tags.IterateTag > pageContext.setAttribute(name, iterator.next()); > > Plus lots more... > > A quick look at the spec and I don't think all these things have changed... > What's going on here? > > Hunter > >