outputting a xml file with accentued characters to html

Subject: outputting a xml file with accentued characters to html
From: Gilles Durys <Gilles.Durys@xxxxxxxxxxxxxx>
Date: Thu, 25 May 2000 16:01:03 +0200
Hello,

here's my (simplified) problem:

let's say I have a xml file which looks like this:

<QUIZZ>
<BP DEPLOK="4">
<ENONCE>Le soma est le site de synthèse des constituants
 du neurone</ENONCE>
</BP>
<BP>
</QUIZZ>

(there is a é character in it)

and a stylesheet file
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0">
<xsl:template match="/">
        <html>
        <body>
                <xsl:for-each select="//BP">
                        <xsl:value-of select="."/>
                </xsl:for-each>
        </body>
        </html>
</xsl:template>
</xsl:stylesheet>

when I process it using xalan I get this:

<html><head><title>Mopsys</title></head><body>
Le soma est le site de synthÞ¦Ñ des constituants
 du neurone
</body></html>

My question is : what must I do to have the é character in a correct way
: &eacute; ?

Thanks

-- 
Gilles Durys
Gilles.Durys@xxxxxxxxxxxxxx


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


Current Thread