On 07.08.2008 17:18:18 Fournier,Danny [NCR] wrote: > Here's my classpath: > .;C:\Program Files\Java\jre1.6.0_05\lib\ext\QTJava.zip;c:\FOPClasses\
The mistake is already here, I think. If you specify a directory, Java doesn't automatically add all the JAR files contained therein to the classpath, only *.class files in that directory. You'll have to add every single JAR to the classpath separately. > c:\FOPClasses\ contains: > > avalon-framework-4.2.0.jar > batik-all-1.7.jar > commons-io-1.3.1.jar > commons-logging-1.0.4.jar > fop.jar > serializer-2.7.0.jar > xalan-2.7.0.jar > xercesImpl-2.7.1.jar > xml-apis-1.3.02.jar > xml-apis-1.3.04.jar > xml-apis-ext-1.3.04.jar > xmlgraphics-commons-1.3.1.jar > > - I have gotten the latest build 0.95 and extracted that on C:\ > > - I have my original source code that worked on 0.93 here (my 0.93 > folders are nuked and cannot be recovered): > C:\fop-0.95-src\fop-0.95\src\java\My_0.93_Class.java > > When I run "javac My_0.93_Class.java", I get 100 errors. The first bunch > are all about classes not existing > > .\org\apache\fop\apps\FOUserAgent.java:31: package > org.apache.commons.logging does not exist > import org.apache.commons.logging.Log > > You can bet I'll back this one up if I ever get it going again. > > Dan Jeremias Maerki --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
