Hi:
I have a question about <xsl:copy-of>
I have am xml input file:
<a>
<para>Test</para>
</a>
My xslt:
<xsl:template match="a">
<xsl:copy-of select="node()"/>
</xsl:template>
I am using renderx XEP as the processor, and when Igenerate the PDF I
get an error message saying
"Element 'para' belonging to the anonymous namespace cannot occur in
an XSL-FO document outside 'instream-foreign-object' elements."
Can you tell me what this means?
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--