Re: problem with character encoding

2011-03-25 Thread tanteanni
thx now it is working On 23 Mrz., 09:47, Thomas Broyer t.bro...@gmail.com wrote: On Wednesday, March 23, 2011 7:10:00 AM UTC+1, tanteanni wrote: thx for your investigation, i'll try it with chnaged encoding of propery-file (at the moment i load it via

Re: problem with character encoding

2011-03-23 Thread tanteanni
thx for your investigation, i'll try it with chnaged encoding of propery-file (at the moment i load it via Properties.load.getresourceasstream(file)). but is there a way to let my code let the reencoding, so that properties-file could be utf-8? ('til now i thought that all java encoding is utf-x

Re: problem with character encoding

2011-03-23 Thread Thomas Broyer
On Wednesday, March 23, 2011 7:10:00 AM UTC+1, tanteanni wrote: thx for your investigation, i'll try it with chnaged encoding of propery-file (at the moment i load it via Properties.load.getresourceasstream(file)). but is there a way to let my code let the reencoding, so that

Re: problem with character encoding

2011-03-22 Thread Lukasz
Hi, is the application deployed on a tomcat? If so, then check the server.xml configuration and especially the conncetor URI encoding definition. HTH, Lukasz On 22 Mrz., 12:32, tanteanni tantea...@hotmail.com wrote: i made a very simple sandbox gwt-app to get familiar with rpc and integrating

Re: problem with character encoding

2011-03-22 Thread tanteanni
no at the moment i only used the integrated jetty in development mode. how to configure jetty? where is gwt-delivered-jetty located? On 22 Mrz., 16:30, Lukasz l.plotni...@googlemail.com wrote: Hi, is the application deployed on a tomcat? If so, then check the server.xml configuration and

Re: problem with character encoding

2011-03-22 Thread Thomas Broyer
If you use the java.util.Propertieshttp://download.oracle.com/javase/6/docs/api/java/util/Properties.htmlclass to read from your properties file, depending on how you load the properties, the file should be encoded in ISO-8859-1: The