[xsl] Problems runnig FOP on linux

Subject: [xsl] Problems runnig FOP on linux
From: John Walker <dtd2050@xxxxxxxx>
Date: Fri, 18 Jan 2002 13:41:29 +0100
Hi,
I'm having a problem running FOP under Red Hat Linux 7.0. It crashes with the following org.apache.fop.apps.FOPException: Namespace not supported by SAXParser.
I have used a pair of simple foo.xsl and foo.xml input files to obtain an output pdf:


foo.xml
------------------
<?xml version="1.0" encoding="ISO-8859-1"?>
<Doc>
   Hello world!
</Doc>
------------------


fo.xsl
--------------------
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:fo="http://www.w3.org/1999/XSL/Format";>
<xsl:template match="/">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format";>
<fo:layout-master-set>
<fo:simple-page-master master-name="base" margin-left="3cm" margin-right="3cm" margin-top="1cm" margin-bottom="1cm">
<fo:region-body margin-top="1.5cm" margin-bottom="1.5cm"/>
<fo:region-before extent="1.5cm"/>
<fo:region-after extent="1cm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-name="base">
<fo:flow flow-name="xsl-region-body">
<fo:block font-family="Helvetica" font-size="14pt" font-weight="bold" font-style="italic" color="#000000" space-after="5mm" space-before="5mm">
<xsl:value-of select="Documento"/>
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
</xsl:stylesheet>
--------------------
It works fine on Windows but not on Linux. Please, I need some help... I'm going crazy with this problem.
Thanx!






XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list


Current Thread