Hello. I tried your way but sure I miss something because it does not
work.
My application is:
---------------------------------
config.xml file
<content>Text here text here.
text here.
text here.
</content>
<content>Other text here text here.
text here.
</content>
and gwt code
HTML contHTML = new HTML();
Document d; //where the parser stores the document
Element element = (Element) document.getDocumentElement();
//retrieve contents
contents = element.getElementsByTagName("content");
contHTML.setHTML(contents.item(0).getFirstChild().getNodeValue());
------------------------------
now, I know that i must put the <![CDATA[ ]]> around my text, but then
i don't understand what to do.
Thank you for your help.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---