|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 10/23/2008 8:15:27 AM
Posts: 8,
Visits: 58
|
|
I'm using embed tag to generate my chart.
attribute dataurl has an url which generate a XML.
(dataurl =/HvsCeg2008.1.004/chart/typechartdispatcher.do?prjref=5bb80bf6-b826-417c-b990-3a4302178e7f&_cancelToken=true&chartId=resultsChartId&chartType=MSCombiDY2D&width=665&height=170&imgType=swf)
all my characters are correctly rendered (even accents such é, è etc...)
i tried using encoding ISO-8859-15 but nothing happened.
if i try instead of this url, a url "xxx.xml" to read directly a XML file, it's OK for all characters.
Could you help me please 
Florian.
|
|
|
|
|
Supreme Being
      
Group: Moderators
Last Login: Today @ 11:14:02 PM
Posts: 627,
Visits: 1,914
|
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 10/23/2008 8:15:27 AM
Posts: 8,
Visits: 58
|
|
thanks for the response but unfortunately i even read and tried this solution...
it seems to be an encoding problem in the httpservletresponse but i'm not sure...
When the XML datas are in a physical file, the "dataURL" render the euro symbol, but when it's an URL , this symbol is not rendered
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: Today @ 8:20:12 AM
Posts: 2,194,
Visits: 521
|
|
Hi,
Can you try switching the debug mode to on and see if it helps?
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 10/23/2008 8:15:27 AM
Posts: 8,
Visits: 58
|
|
Hi I forced my String to be encoded in ISO-8859-15 , and now it's OK 
new String(myXmlString.getBytes(), "ISO-8859-15")
myXmlString contains this attribute written like that : "numberSuffix=' €' "
thank you !
|
|
|
|