http://xml.apache.org/http://www.apache.org/http://www.w3.org/

Home

Readme
Download
Running FOP
Features
Limitations
Bugs
Configuration
Examples

Compiling
Embedding
Getting involved
Architecture

FAQs
Specifications
License

Prerequisites
 

Following software must be installed:

a) Java 1.1.x or later (If you want to use AWTCommandLine, you need Swing)

b) An XML parser which supports SAX and DOM like Xerces-J. (Xerces is the default xml parser)

c) Fop supports SVG (see Features for further information) and needs the w3c.jar library. This library comes with Fop (xml-fop/lib) and must be included in your classpath. The jar file w3c.jar contains the compiled classes for the java svg bindings with some other DOM classes that are used by the SVG DOM bindings. The source for the svg java binding classes can be found at - SVG Java bindings, currently they correspond to the CR-SVG-20000802 specification document. The other required files can be found at W3C DOM Java binding.

d) Optional: Fop supports the jimi library for image processing, if it is in your classpath when you build Fop. You can find it at java.sun.com


Starting FOP as an standalone application
 

There are three ways to run FOP from the command line.

a) Batch processing formatting objects (fo) files:

java org.apache.fop.apps.CommandLine fo-file pdf-file

b) Batch processing xml files (includes production of the fo-files):

java org.apache.fop.apps.XalanCommandLine xml-file xsl-file pdf-file

c) Previewing the fo-file:

java org.apache.fop.apps.AWTCommandLine fo-file

Each method uses next to the fop classes other packages. The following describes each method in detail.

Method One
 

One is to first use an XSLT engine to produce the formatting object tree as an XML document and then running the class org.apache.fop.apps.CommandLine with the formatting object file name and PDF filename as arguments. You need to set classpath and set the used sax parser according to your enviroment

Classpath settings: You will need to include FOP and your XML Parser in your classpath and so you might invoke FOP, if Xerces-J is your xml parser:

java -cp fop.jar;xerces.jar;w3c.jar

org.apache.fop.apps.CommandLine fo-file pdf-file

If you want to use another sax parser, you will need to set the property org.xml.sax.parser to any other SAX Parser class to use. The following example shows the command line, if you use XP from James Clark:

java -Dorg.xml.sax.parser=com.jclark.xml.sax.Driver

-cp fop.jar;xerces.jar;xp.jar;w3c.jar

org.apache.fop.apps.CommandLine fo-file pdf-file

Note: The xerces jar file must be included, because xp has no dom support.


-
Method Two
 

Rather than performing transformation with an XSLT before invoking FOP, it is possible, if you use Xalan as your XSLT engine, to just call FOP and have it call Xalan for you. To do this, run the class org.apache.fop.apps.XalanCommandLine with the source XML file name, XSL file name and PDF file name as arguments. You will need to include Xalan in your classpath and so you might invoke

java -cp fop.jar;xalan.jar;xerces.jar;w3c.jar

org.apache.fop.apps.XalanCommandLine xml-file xsl-file pdf-file

Again, if your SAX Parser is other than Xerces, you will need to set the property org.xml.sax.parser to the SAX Parser class to use.


Method Three
 

If you already produced the FO file, you can preview the results of your transformation without using any pdf viewer by invoking FOP with the viewer application. You will need to include FOP and your XML Parser in your classpath

java -cp fop.jar;xerces.jar;w3c.jar

org.apache.fop.apps.AWTCommandLine fo-file

The viewer uses the swing classes.



Commandline switches
 

Fop supports at the moment following commandline switches:

-d
 

This switch informs you in case of an error of the method stack


-cUserconfig.xml
 

The switch '-c' immediately followed by a file name, p.e. Userconfig.xml, tells Fop to use this user configuration file.



Running FOP on MacOS
 

Ensure that you have a recent MRJ, and that you have downloaded and unpacked the XP and SAX distributions. The xp.jar and sax.jar files work as is on MacOS.

Drag the FOP jarfile onto the JBindery icon. When the first dialog appears, type "org.apache.fop.apps.CommandLine" in the "Class name" field. Using UNIX syntax, type the names of the input formatting-object file and the output PDF in the "Optional parameters" field.

Click on the Classpath icon. To add the xp.jar and sax.jar files, click the "Add .zip file" button, navigate to the file in question, and click Open.

Once both are added (the FOP jarfile will already be in the list), click Run. A "stdout" window will appear and display FOP runtime messages.


Problems
 

If you have problems running FOP, please have a look at the FOP FAQ. If you don't find a solution there, you can ask for help on the list fop-dev@xml.apache.org. Maybe it is a bug and maybe somebody is already working on it.



Copyright © 1999 The Apache Software Foundation. All Rights Reserved.