XML Transform encoding

How can I make the XML Transform Action use UTF-8 instead of UTF-16 when writing the document? The input file and the transform uses UTF-8.

/axl

Hi

The output encoding is controlled by the xsl:output node in the stylesheet :

< xsl:output method="xml" encoding="UTF-8" / >

I should have thought of that, of course. Thanks.

/axl