FusionChart working with Arabic properly in development.When i make war file and put it to Tomcat webApps.After startting tomcat, FusoinChart displaying junk value like ????.
Can any1 is there to help me out?
Process:
1.Making xml file from DB and sending as a string.
2.setting ContentType As [text/xml; charset=UTF-8]
String xmlChart = string of xml file.
ServletOutputStream str = response.getOutputStream();
str.write(new byte[]{(byte)0xEF, (byte)0xBB, (byte)0xBF});
str.write(xmlChart.getBytes());
str.flush();
working properly in Eclipse environment.