What would be the effect of using different encodings with xml documents and xslt.
The xslt stylesheet would have the output encoding UTF-8, the input xml will have not encoding declared and will be generated using a string, inside the xslt will be:
<xsl:variable name="doc" select="document('file.xml')"/>
The file is iso-8859-1.
Will using different encodings effect the output?