[Home] [By Thread] [By Date] [Recent Entries]
At 2009-10-07 14:09 +0200, Ben Stover wrote:
Assume I have a XML source based on the following (simplified) XSD schema: Fine ... you have an input element of: <top>
<bbb>myvalue</bbb>
</top>Now I want to copy only this sub-element to a target which currently exists.
If I simply write: Then your processor is broken, because all you are asking for is the string value of each child, and two of the children do not exist. The 2 branches which do not exist were created as empty elements so that the target XML doc looks like e.g. That surprises me and <xsl:value-of> does not create an element node. The question is now: How can I let XSL copy only this branch/element which really exists? But "value-of" is adding text to the result tree, not any elements. <xsl:copy-of select="*"/> will copy all children of the current node. <xsl:value-of-if-exists select=".../aaa"/> <xsl:value-of-if-exists select=".../bbb"/> <xsl:value-of-if-exists select=".../ccc"/> Please demonstrate using an actual stylesheet fragment the behaviour you are citing, because it is not at all expected given the instructions you are using. Oh, and please let us know which processor you are running. I hope this helps. . . . . . . . . Ken -- Upcoming: hands-on code list, UBL, XSLT, XQuery and XSL-FO classes in Copenhagen Denmark and Washington DC USA, October/November 2009 Interested in other classes? http://www.CraneSoftwrights.com/s/i/ Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Training tools: Comprehensive interactive XSLT/XPath 1.0/2.0 video Video lesson: http://www.youtube.com/watch?v=PrNjJCh7Ppg&fmt=18 Video overview: http://www.youtube.com/watch?v=VTiodiij6gE&fmt=18 G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Male Cancer Awareness Nov'07 http://www.CraneSoftwrights.com/s/bc Legal business disclaimers: http://www.CraneSoftwrights.com/legal
|

Cart



