On Dec 8, 2005, at 20:25, [EMAIL PROTECTED] wrote:
Hi,
thanks for the advice I split up the transformation but couldn't find
anything wrong.
The xslt file misses in the output the template & style tags but I
suppose
that's ok.
Depends on what do you mean by "OK"? Your XSLT doesn't contain any
templates other than one matching the root node of your source XML.
Did you leave the others out intentionally? If not, that explains why
none of your XML data shows up in the result document... AFAICT, your
source XML contains only:
<Hello>Hello</Hello>
To this you apply templates and create the root. Then, the XSLT
processor goes looking for Hello element nodes to iterate over, but
doesn't find any... The only child node is a Hello text node.
IIC: try removing the xsl:for-each, and you should at least get some
result...
HTH!
Cheers,
Andreas
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]