T
Tech
Hello,
I want to transfer a XML node with a XSL stylesheet into another XML
document like this:
source XML...
---------------------------
....
<flowText font-size="20" xml:space="preserve"
xmlns="http://xml.apache.org/batik/ext">
Hello World
</flowText>
....
xsl...
---------------------------
....
<xsl:template match="flowText ">
Test...
<xsl:apply-templates/>
</xsl:template>
....
result XML (I want to see this...)
----------------------------
Test... Hello World
(but I see nothing)
-----------------------------
I think the processor can´t find the node because of this
"xml:space="preserve" xmlns="http://xml.apache.org/batik/ext"
attribute! Did anybody know a solution of my problem?
THX
I want to transfer a XML node with a XSL stylesheet into another XML
document like this:
source XML...
---------------------------
....
<flowText font-size="20" xml:space="preserve"
xmlns="http://xml.apache.org/batik/ext">
Hello World
</flowText>
....
xsl...
---------------------------
....
<xsl:template match="flowText ">
Test...
<xsl:apply-templates/>
</xsl:template>
....
result XML (I want to see this...)
----------------------------
Test... Hello World
(but I see nothing)
-----------------------------
I think the processor can´t find the node because of this
"xml:space="preserve" xmlns="http://xml.apache.org/batik/ext"
attribute! Did anybody know a solution of my problem?
THX