Hi,
after days of trial and error i need to ask the community again. Even I use UTF-8 everywhere I can use it I still cant get the german umlaut properly in the browser. All my project files are utf-8 encoded, in my start html i use
Even in web.xml i use
But its doesnt work. From another thread I got the link to documentation of i18 which I read already.
In my local environment I dont have these issues (OS X) but in network with websphere and DB2. Are any settings necessary in application server? (Which would be bad because its not under my control)
I have a datasource *.ds.xml file and a valuemap like
I cant get the umlaut right from this selection. This is one problem.
Another problem are the textitems. Typing any 'ö' will be saved wrong.
There must be way, thx for any point
after days of trial and error i need to ask the community again. Even I use UTF-8 everywhere I can use it I still cant get the german umlaut properly in the browser. All my project files are utf-8 encoded, in my start html i use
Code:
<meta http-equiv="content-type" content="text/html; charset=utf-8">Code:
<servlet>
<servlet-name>DataSourceLoader</servlet-name>
<servlet-class>com.isomorphic.servlet.DataSourceLoader</servlet-class>
<init-param>
<param-name>locale</param-name>
<param-value>de_DE</param-value>
</init-param>
</servlet>In my local environment I dont have these issues (OS X) but in network with websphere and DB2. Are any settings necessary in application server? (Which would be bad because its not under my control)
I have a datasource *.ds.xml file and a valuemap like
Code:
<valueMap>
<value>Entwurf</value>
<value>Prüfung</value>
<value>Freigabe</value>
</valueMap>Another problem are the textitems. Typing any 'ö' will be saved wrong.
There must be way, thx for any point