Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 11th, 2008, 08:30 AM
Authorized User
 
Join Date: Jul 2008
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to vsempoux
Default usage of cdata

Hello all,

my original xml contains the following item
<AdvrtCampaignurl>http://www.goldenpages.be/sttec3detailssearch.ds?detailsListingId=1529207&lo cale=nl_BE&headingNumber=7880&adtype=cms&adrecip=g oogle&adcamp=10114977</AdvrtCampaignurl>

how can i say in my xslt that when he transforms this item that the contents of this item has to be placed inside a cdata section.
The result of the above tag then should be
<NewUrl><![CDATA[http://www.goldenpages.be/sttec3detailssearch.ds?detailsListingId=1529207&lo cale=nl_BE&headingNumber=7880&adtype=cms&adrecip=g oogle&adcamp=10114977]]></NewUrl>

When i tried to do it, it failed. I created two variables, like this:
<xsl:variable name="x1" select="![CDATA["/> <xsl:variable name="x2" select="]]"/>
and after that i tried to concat like this:
<NewUrl><xsl:value-of select="concat($x1,campaignurl,$x2)"/></NewUrl>

Any idea's ??

Greetings and thanks in advance.

 
Old July 11th, 2008, 08:38 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default


Do remember the distinction between transformation and serialization. The transformation creates nodes in a result tree, the serializer turns the result tree into XML markup.

You can't put a CDATA section in the result tree, because there's no such thing in the XSLT/XPath data model.

You can however request the serializer to insert CDATA sections for the contents of any given element, by

<xsl:output method="xml" cdata-section-elements="NewUrl"/>

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
Add a CDATA section; add nodeset to CDATA section kssudhish XSLT 3 January 3rd, 2008 07:13 AM
question on CDATA rahulsinghania XML 1 January 9th, 2007 03:53 PM
CDATA haixia XSLT 0 August 7th, 2006 03:03 PM
CDATA issue sgruhier XSLT 0 February 20th, 2005 03:28 AM
CDATA section kai77 Beginning VB 6 0 October 31st, 2004 04:50 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.