Using Stax, I'm surprised to find that an XML block such as:

<badger>
    <![CDATA[Text about a badger]]>
</badger>

is treated as if it were:

START_ELEMENT (badger)
CHARACTERS (        Text about a badger    )
END_ELEMENT (badger)

That is, the CDATA and the surrounding text are flattened into one text element. There is no CDATA element detected.

Is this correct behaviour? How can I separate the whitespace from the CDATA?

I am using the woodstox implementation.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I don't know about the woodstox implementation, but could this bug, resolved in 2006, still be a factor? Are you setting the optional report-cdata-event property?

(See also this message about a similar problem.)

link|improve this answer
@Synesso: Are you setting the report-cdata-event property? (See link in answer.) – LarsH Dec 5 '10 at 18:28
Note that bug you referred was for Stax reference implementation, not Woodstox, so this is not the cause when using Woodstox. It would make sense for RI of course. – StaxMan Dec 20 '10 at 19:02
feedback

CDATA isn't an element; it's an escape mechanism that tells the XML parser not to bother looking for nested tags within that section. This is useful for text that contains characters like < and &, to avoid tediously escaping them all individually, or because there's some other reason that normal escape sequences won't work.

link|improve this answer
However, Stax supports CDATA events. What is this for, if not to detect CDATA elements? – Synesso Dec 5 '10 at 0:30
1  
@Synesso: This answer has a good point... CDATA markup is explicitly excluded from the XML Infoset (w3.org/TR/xml-infoset/#omitted), so in terms of standardized use of XML, and compatibility with tools, it's better not to rely on CDATA markup to signify a meaningful distinction. – LarsH Dec 6 '10 at 16:31
Thanks LarsH. Unfortunately the XML documents are not under my control. – Synesso Dec 6 '10 at 20:21
feedback

I suspect you have property 'XMLInputFactory.IS_COALESCING' set to true (or, are using Woodstox 3.2 that had it enabled by default -- which is not the default stax specs suggest, i.e. was a minor bug). This forces both conversion of CDATA into CHARACTERS, and coalesces adjacent text segments if any.

Other than this, Woodstox does report CDATA sections as distinct; but Stax specification has some 'interesting' requirements for convesion -- members of the expert group seemed to dislike idea of CDATA being handled any different from CHARACTERS.

So: if you do want to get them reported separate, make sure to disable IS_COALESCING:

inputFactory.setProperty(XMLInputFactory.IS_COALESCING, Boolean.FALSE);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.