Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@apache.org Received: (qmail 50648 invoked from network); 3 Oct 2002 01:42:41 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 3 Oct 2002 01:42:41 -0000 Received: (qmail 25323 invoked by uid 97); 3 Oct 2002 01:43:25 -0000 Delivered-To: qmlist-jakarta-archive-tomcat-dev@jakarta.apache.org Received: (qmail 25307 invoked by uid 97); 3 Oct 2002 01:43:24 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 25295 invoked by uid 98); 3 Oct 2002 01:43:24 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Content-Type: text/plain; charset="iso-8859-1" From: Steve Downey To: "Tomcat Developers List" Subject: Re: Is Compile Failure? was Re: Need some clarifications Date: Wed, 2 Oct 2002 21:40:08 -0400 User-Agent: KMail/1.4.1 References: <5.1.0.14.2.20021002153515.06d6bc08@mail.devspace.com> <5.1.0.14.2.20021003015215.017e8d48@mail.devspace.com> In-Reply-To: <5.1.0.14.2.20021003015215.017e8d48@mail.devspace.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210022140.08081.steve.downey@netfolio.com> X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N You need to be using the HEAD version of digester. It should have been bu= ilt=20 in the directory specified by base.path. Double check that it was built=20 correctly. I just recreated it in my depends directory, and the system bu= ilt=20 fine. A number of the dependencies are unreleased at this point. 'ant download'= =20 tries to grab the correct ones.=20 On Wednesday 02 October 2002 07:54 pm, Christian Gross wrote: > Thanks for your answer. That helps quite a bit. Now I have another > issue... > > build-catalina: > [javac] Compiling 94 source files to > D:\Instructor\Projects\jakarta-tomcat-c > atalina\build\server\classes > [javac] > D:\Instructor\Projects\jakarta-tomcat-catalina\catalina\src\share\or > g\apache\catalina\startup\ContextConfig.java:537: cannot resolve symbol > [javac] symbol : method > setEntityResolver (org.apache.catalina.util.Schema > Resolver) > [javac] location: class org.apache.commons.digester.Digester > [javac] tldDigester.setEntityResolver(tldEntityResolver); > [javac] ^ > [javac] > D:\Instructor\Projects\jakarta-tomcat-catalina\catalina\src\share\or > g\apache\catalina\startup\ContextConfig.java:595: cannot resolve symbol > [javac] symbol : method > setEntityResolver (org.apache.catalina.util.Schema > Resolver) > [javac] location: class org.apache.commons.digester.Digester > [javac] webDigester.setEntityResolver(webEntityResolver); > [javac] ^ > [javac] > D:\Instructor\Projects\jakarta-tomcat-catalina\catalina\src\share\or > g\apache\catalina\util\SchemaResolver.java:154: cannot resolve symbol > [javac] symbol : method setPublicId (java.lang.String) > [javac] location: class org.apache.commons.digester.Digester > [javac] digester.setPublicId(publicId); > [javac] ^ > [javac] Note: Some input files use or override a deprecated API. > [javac] Note: Recompile with -deprecation for details. > [javac] 3 errors > > BUILD FAILED > file:D:/Instructor/Projects/jakarta-tomcat-catalina/catalina/build.xml:= 801: > Comp > ile failed; see the compiler error output for details. > > I checked out digester 1.3 and 1.2 and there does not seem to be a meth= od > setEntityResolver. Or am I missing something? > > Christian Gross > > At 14:18 02/10/2002 -0400, you wrote: > >On Wednesday 02 October 2002 09:38 am, Christian Gross wrote: > > > Hi > > > > > > So I worked myself through the various CVS sources and have a coupl= e of > > > "official" position questions to ask. > > > > > > The CVS projects jakarta-tomcat-catalina and jakarta-tomcat-jasper, > > > will be forming the Tomcat 5 work? > > > >jakarta-servletapi-5, jakarta-tomcat-5, jakarta-tomcat-catalina, > >jakarta-tomcat-connectors, jakarta-tomcat-jasper, and jakarta-watchdog= -4.0 > >are the CVS repositories involved in Tomcat 5.0 > > > > > The CVS project jakarta-tomcat-4.0 is the 4.x branch? > > > >Yes > > > > > The CVS project jakarta-tomcat is anything before 4.0 > > > >Tomcat 3.x, at least. > > > > > The CVS project jakarta-tomcat-5.0 does nothing?????? > > > >It's the master project for the whole Tomcat 5.0 project. To use it, s= tart > >with a directory like tc5-workspace. In that directory: > >export CVSROOT=3D:pserver:anoncvs@cvs.apache.org:/home/cvspublic > >cvs co jakarta-servletapi-5 > >cvs co jakarta-tomcat-5 > >cvs co jakarta-tomcat-catalina > >cvs co jakarta-tomcat-connectors > >cvs co jakarta-tomcat-jasper > > > >then, in jakarta-tomcat-5 create a build.properties file with the > > following definition > >base.path =3D /home/sdowney/tc5-workspace/depends > >(replace /home/sdowney/tc5-workspace with path to your workspace. I do= n't > >know > >if relative will work. I stopped dinking when I got my build system to > >function) > > > >You need ant 1.5 to build Tomcat 5 > > > >export ANT_HOME=3D/home/sdowney/tools/jakarta-ant-1.5 > > > >PATH=3D$PATH:$ANT_HOME/bin > > > >ant download > > > >The download target in Tomcat 5 gets the necessary ancillary libraries= to > >build the system. I'm using JDK 1.4, which has a few things built in. = You > > may need to install some things in JDK 1.3, like JCE. I'm not sure. > > > >Then: > > > >ant build > >ant test > >[Not many tests at the moment] > >If you're contributing, you may also want to do > > > >ant -Dfull.dist=3Don build > > > >That will force a full compile, rather than checking which optional > >components > >are available and setting things on or off based on the presense or > > absense of classes. That useful for building a customized version, bu= t > > for testing purposes, a full build is better. > > > >To run the watchdog conformance test suite: > > > >ant watchdog > > > > > > > >-- > >To unsubscribe, e-mail: =20 > > For additional > > commands, e-mail: > > Christian Gross > Software Engineering Consultant > http://www.devspace.com > North America: 1-450-675-4208 > Europe +41.1.701.1166 -- To unsubscribe, e-mail: For additional commands, e-mail: