vote up 0 vote down star

I am using iso-8859-15 encoding both in xml data and in the xslt style sheet. But when I try convert XML doc to FO document 'œ' does'nt show up it shows up as '?' Below is the example of the problem I am facing.

The xml data is as follows: Nous sommes sous l'emprise du Divin cœur de Celui que mon fils vénère par-dessus

in the fo file the same line is generated as :

--------Nous sommes sous l'emprise du Divin c?ur de Celui que mon fils vénère par-dessus

As you see all the other accents are getting generated fine except for the 'œ'character.

Any help is greatly appreciated. This one issue is holding up a project.

flag

1 Answer

vote up 0 vote down

Have you seen http://xmlgraphics.apache.org/fop/faq.html#pdf-characters ? It could be that you're simply using a font that doesn't have that character. See also http://xmlgraphics.apache.org/fop/stable/fonts.html on how to configure fonts.

However, given that you get a '?' and not a '#' for the missing character could indicate that there's an encoding problem. Sun JVMs usually replace characters that are not in an encoding by a '?'. You might want to consider switching to UTF-8 even though ISO 8859-15 should support the characters you want to use. Since I don't have access to your XML file here, I can't figure out if there's something wrong with it.

HTH

link|flag
Thanks for the input, I will try to check the font and also I will try with utf-8. Your help is appreciated. – Gautham Sep 9 at 14:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.