Internationalising
Hello,
I have an application which I want to offer in more than one language. On the Login-Page I have a DropDown with the language-Selections and I store the Selection in a SessionBean-Property. The content of this property is "de" or "en" (fordeutsch [german] andenglish). I set the Locale than with the follwing code:
FacesContext.getCurrentInstance().getViewRoot().setLocale(new Locale(getSessionBean1().getMyLocale()));
This works like I want it on my Development-Machine (german Windows XP) but works NOT on my production-Machine (english Suse 10.0). On both machines I use Sun Application Server PE 9.
Any hints?
Regards,
Willi

