2
votes
2answers
32 views
Does javadoc have an equivant to <![CDATA[ … ]]> ?
Unfortunately, there is no CDATA in HTML.
This is a pity, because it would be perfect for adding javadoc comments that include XML, so you don't have to escape the < and >, for …
7
votes
6answers
3k views
When is a CDATA section necessary within a script tag?
Are CDATA tags ever necessary in script tags and if so when?
In other words, when and where is this:
<script type="text/javascript">
//<![CDATA[
...code...
//]]>
< …
1
vote
2answers
10 views
Mixing childs with cdata under the same node. Is it valid?
Hi, I need to parse the following xml document (which is coming from external web service):
...
<dati>
<Riconoscimento>
<IdentificativoPosizione>xxxx …
0
votes
2answers
30 views
how to extract data from CDATA
Hi,
I am extracting data from an XML and some tags have data inside CDATA in this way
<description><![CDATA[Changes (as compared to 8.17) include:
Features:
* Added …
-2
votes
1answer
22 views
read cdata in xml from javascript
<![CDATA[test]]>
I am getting blanks.
var dataNode=Ext.DomQuery.selectNode('data',xml);
console.log(dataNode.childNodes[0].nodeValue);
console.log(dataNode.nodeValue);
1
vote
3answers
41 views
Using CDATA element in XML is vulnerable or not?
Is it a vulnerable using CDATA element in XML documents? If so what happens if we use CDATA element in XML documents?
3
votes
8answers
245 views
What is the reason that CDATA even exists?
I often see people asking XML/XSLT related questions here that root in the inability to grasp how CDATA works (like this one).
I wonder - why does it exist in the first place? It' …
0
votes
1answer
28 views
Reading RSS feed with Linq-to-XML and C# - how to decode CDATA section?
Hi there,
I am trying to read an RSS feed using C# and Linq to XML.
The feed is encoded in utf-8 (see http://pc03224.kr.hsnr.de/infosys/feed/) and reading it out generally works f …
2
votes
2answers
65 views
PHP, XML to HTML through XSLT makes HTML inside CDATA encoded.
Hi,
I really need an answer to this question. I am working on a project which uses XML to make pages, then XSLT to produce it to a web page. Here is a code sample:
public functi …
0
votes
3answers
166 views
SQL Server XML output with CDATA
Is there a way to have an SQL Server XML return use CDATA? I have XML being returned by SQL Server like this:
<locations>
<site id="124">
<sitename>T …
0
votes
3answers
43 views
Help with XML, PHP and CDATA
Hi,
I have the following contents in my XML file:
<items>
<item id="1"><content><![CDATA[<p>string</p>]]></content></item>
</it …
0
votes
2answers
79 views
cdata in xslt for html
I have an XSLT file generating plain HTML. I need to wrap some elements in CDATA blocks, so intend to use cdata-section-elements. But, if the element I want to have contain CDATA i …
1
vote
1answer
49 views
HTML inside XML doc doesn’t display properly if first text inside element
I'm using javascript to pull data returned from an XML document. Inside this XML file are elements that may have XHTML tags inside of them. The nodevalue is not displaying when the …
0
votes
2answers
202 views
XML Serialization - XmlCDataSection as Serialization.XmlText
I am having problems serializing a cdata section using c#
I need to serialize XmlCDataSection object property as the innertext of the element.
The result I am looking for is this …
5
votes
5answers
2k views
Is there a way to escape a CDATA end token in xml?
I was wondering if there is any way to escape a CDATA end token ( ]]> ) within a CDATA section in an xml document. Or, more generally, if there is some escape sequence for using wi …
