
Process an XSL-FO Document
Sometimes you need to process an XSL-FO document that is the result of an XSLT transformation. Actually, the XSL-FO document doesn’t exist, it is just a stream of SAX events. In a Java application, this can be done with the FOP processor classes: //the XML documentC:Data_LocalxmldocsAirWings_xpath_xslt.xml//the XSL stylesheetC:Data_LocalxmldocsAirWings_xslt_fop.xsl//the output –