Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: Encode URL with CDATA

From: Peter Flynn <peter.nosp@-.--------.-->
To: NULL
Date: 8/6/2007 8:28:00 PM

chris fellows wrote:
> I'm transforming my XML document with XSL and I need to wrap a URL using 
> CDATA.  The URL is returned from the XML using <xsl:value-of select="URL"/>. 
> The output should look like this:
> 
> <Something>
>     <URL><![CDATA[http://myurl/mypage.aspx?param1=10&param2=50>]]></URL>
> </Something>
> 
> Can someone tell me how to add the CDATA in the XSL?  I've tried escaping 
> using &lt;![CDATA] but Internet Explorer doesn't display the XML as CDATA.

Wrong approach. If your input contains isolated ampersands like that 
then it's not well-formed XML in the first place and won't be 
processable with any XML software. You'll get a parser error message 
saying that &param2 is a faulty entity reference or something like that. 
Nothing to do with CDATA: the error is in the input file.

Modify the input so that it's well-formed:
<URL>http://myurl/mypage.aspx?param1=10&amp;param2=50</URL>
then you won't need the CDATA section.

Bodging your output to accommodate broken input data is A Bad Idea: much 
better to fix the input data first. See 
http://xml.silmaril.ie/authors/cdata/ for more information.

///Peter


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent