> -----Original Message-----
> From: Luke Shannon [mailto:[EMAIL PROTECTED]
>

Hi,

> I am getting the error:
>
> org.xml.sax.SAXParseException: The prefix "fo" for element
> "fo:block" is not bound.

Without seeing your FO source, difficult to say for sure, but it points to
an error in there.

Could be caused by something as simple as:

<?xml version="1.0" standalone="yes"?>

<fo:block />
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format";>
 ...
</fo:root>

Having a block outside of the root is, of course, a major error, but even if
it weren't the 'fo:' prefix is not yet bound to a namespace for the first
fo:block. This error would be encountered before the FO is
validated --'validation' being somewhat of an overstatement considering FOP
0.20.5, but you get the idea ;-)

HTH!

Greetz,

Andreas


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to