FW: Using FOP / trying to embed FOP

2003-01-03 Thread Kevin.Wood
Trying to embed FOP within Java. I added code that the documentation stated was necessary in order to embed FOP. I compiled the code. I get errors when instantiating the FOP Driver class. I apologize for this be lengthy. ---Executing my java

Re: Using FOP / trying to embed FOP

2003-01-03 Thread Jeremias Maerki
Hi Kevin This is probably a classpath problem (NoClassDefFoundError). You've got to make sure that fop.jar (as well as batik and friends) are on your classpath. Example: java -cp fop.jar;batik.jar;other-jars... embed simple.fo testembed.pdf Look at fop.bat as another example. Don't try to