i have problem with loadXML() and ó

when i load data from xml with utf-8 encoding and my “ó” letter it’s encode to ó
in Firefox 3.0 is ok but when i use IE 7 i have an error : "load XML  incorrect XML"
I test witout ó everything is all right
thx

Please try to wrap output in CDATA


If it still cause problems - please provide a sample of problematic xml.

problem is with line like that (in my dynamically create xml file):




when i load from my menu from url “menu_dhx.jsf” (this file create my xml):

menu.loadXML(“menu_dhx.jsf?etc=”+ new Date().getTime());

i have this error
its difficult use <![CDATA[  i think

only under IE 7

this piece of code  #{messages[‘RelMain.menu’]} makes my “ó” encode to ó

this xnl fragnebt is after evaluate:

           
               
               
               
               
               
               
               
           



its difficult use <![CDATA[ i think
If you are using PRO version of tree it can be done as




>>this xnl fragnebt is after evaluate:
IE doesn’t recognize ó as valid XML entity.
To resolve issue, you can use CDATA section as mentioned above, or change your code to produce XML as

such combination will be correctly parsed and correctly rendered in HTML


thx very much