Sanjay,
We fixed that now and it's working.
FIY:
To extract data from CDATA section with JDOM extact the text of the Element as a String str and change it as InputStream
InputStream in;
SAXBuilder builder;
byte[] bytes = str.getBytes();
InputStream in = new ByteArrayInputStream(bytes);
to call then
Document doc = builder.build(in);
the new document can now be used to be parsed as usual.
Cheers
Seb