<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4134.600" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#c8e0d8>
<DIV><FONT face=Arial size=2>When running the SAXBuilderDemo if found that it 
strips out cdata from elements</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>on the following file:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&lt;?xml version="1.0"?&gt;</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&lt;!DOCTYPE Simple [</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;&lt;!ELEMENT Simple ( VerySimple?, ( MySimple 
| YourSimple ) )&gt;</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV><FONT face=Arial size=2>
<DIV><BR>&nbsp;&lt;!ELEMENT VerySimple (#PCDATA)&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV><BR>&nbsp;&lt;!ELEMENT MySimple (#PCDATA)&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&lt;!ATTLIST MySimple type ( MI | MS | IS ) "IS" &gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&lt;!ELEMENT YourSimple (#PCDATA)&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;]&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&lt;Simple&gt;<BR>&nbsp;&nbsp;&lt;VerySimple&gt;hello&lt;/VerySimple&gt;<BR>&nbsp;&lt;MySimple 
type="IS" /&gt;<BR>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;/Simple&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>I get the following output:</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;?xml version="1.0" encoding="UTF-8"?&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;!DOCTYPE Simple&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;Simple&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp; &lt;VerySimple&gt;&lt;/VerySimple&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp; &lt;MySimple type="IS"&gt;&lt;/MySimple&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;/Simple&gt;<BR></DIV>
<DIV>I am new to jdom, but it looks like the builder strips out the cdata 
"hello". Why is this?</DIV>
<DIV>and how can i avoid this?</DIV>
<DIV>I am using the default xerces parser.</DIV></FONT></BODY></HTML>