[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: escaping from CDATA

Subject: Re: escaping from CDATA
From: Johannes Döbler <jd@xxxxxxxxxxxxxx>
Date: Thu, 25 Oct 2001 15:53:46 +0200
cdata access in xsl
Assumed you want to access the XML fragment as XML and not as string, then you could implement a URIResolver which receveives the xml fragment and turn it into a Source object (expressed in Java and TrAX-terms).

If the CDATA-Textnode is the current node, then use the following XPath expression

document(concat('fragment:', .))

to access the fragment string as document.
The URIResolver (which is invoked when document() is called) could be implemented like this:


public javax.xml.transform.Source resolve(String href, String base)
{
if (href.startsWith("fragment:"))
{
String fragment = href.substring("fragment:".length());
return new javax.xml.transform.stream.StreamSource(new java.io.StringReader(fragment));
}
else
return null;
}



Cheers, Johannes


I have some valid xml embedded in a CDATA section:

<![CDATA[<element attr="100"><a>100</a><b>200</b></element>]]>

I don't control the source XML so I just have to accept this.
My question is how I can access the XML fragment inside the
CDATA section. THankx



XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.