Algimka 0 Posted September 13, 2016 Report Share Posted September 13, 2016 (edited) My xslt code generates empty document Source document: <root xmlns="http://www.w3schools.com" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" sender="CODE1"> <general> <date>2016-06-15</date> </general> <document> <documentType>ORIGINAL</documentType> <documentNumber>123</documentNumber> </document> </root> Xslt: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" encoding="windows-1251" indent="yes" /> <xsl:template match="/"> <xsl:element name="root"> <xsl:element name="sender"> <xsl:value-of select="/root/@sender" /> </xsl:element> <xsl:element name="number"> <xsl:value-of select="/root/document/documentNumber" /> </xsl:element> <xsl:element name="date"> <xsl:value-of select="/root/general/date" /> </xsl:element> </xsl:element> </xsl:template> </xsl:stylesheet> But when from source document root tag remove all xmls parameters - everything works fine. How can I solve this problem? Edited September 13, 2016 by Algimka Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.