I have a question about JSF bundles. I want to use f:loadBundle tag to load the Arabic language but it displays strange characters in the browser. Although
1. I had converted the bundle file to (UTF-8) instead of (ISO).
2. I've also changed the TomCat catalina.bat to include -Dfile.encoding="UTF-8" when starting Tomcat.
3. <% @ page language="java" pageEncoding="utf8" contentType="text/html; charset=UTF-8" %> setted the jsp page encoding to UTF-8.
3. <% @ page language="java" pageEncoding="utf8" contentType="text/html; charset=UTF-8" %> setted the jsp page encoding to UTF-8.
Have I have to do anything else? or I will have to make my own loadBundle tag library to convert ISO to UTF-8.
Thanks very much

