[Solved] German Umlaute

2004-09-19 Thread Philipp Roethl
Thanks to all for your help. I finally found the problem: one of the tiles had set its encoding to UTF-8 *argh*. After I removed that, everything worked perfect. Philipp - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Re[2]: German Umlaute

2004-09-17 Thread Martin_Schaefer
Since you see to experience your problem in request processing, may be set the encoding with the VM: -Dfile.encoding="ISO-8859-1" or UTF-8 if you like. Also the locale of your operating system might play a role. If its a UNIX/Linux box, do you have the german locale installed? Regards Martin Ca

Re: German Umlaute

2004-09-17 Thread Christoph Kutzinski
Carl-Eric Menzel wrote: Christoph Kutzinski wrote: ISO-8859-1 should be no problem since it contains all german umlauts. True. But I have standardized on UTF-8 for all text output in my applications, since I sometimes also have to deal with cyrillic stuff, and I don't want to adjust my encodings

Re[2]: German Umlaute

2004-09-17 Thread Carl-Eric Menzel
Christoph Kutzinski wrote: > ISO-8859-1 should be no problem since it contains all german umlauts. True. But I have standardized on UTF-8 for all text output in my applications, since I sometimes also have to deal with cyrillic stuff, and I don't want to adjust my encodings and the input filter a

Re: German Umlaute

2004-09-17 Thread Christoph Kutzinski
Carl-Eric Menzel wrote: Hi, I.m currently facing a weired problem. I use a form to provide a search function. When I do not use any special character in this form everything is fine. As soon as I enter e.g. "Rö" the corresponding form value is set to "Rö" If an umlaut appears in the search resul

Re: German Umlaute

2004-09-16 Thread Henrique VIECILI
I don´t think it worth the effort but you can encode the string in base64 and it will work for sure!! Henrique Viecili - Original Message - From: Philipp Roethl To: [EMAIL PROTECTED] Sent: Thursday, September 16, 2004 5:01 PM Subject: German Umlaute Hi, I.m currently

Re: German Umlaute

2004-09-16 Thread Carl-Eric Menzel
> Hi, > I.m currently facing a weired problem. > I use a form to provide a search function. When I do not use any special > character in this form everything is fine. As soon as I enter e.g. "Rö" the > corresponding form value is set to "Rö" If an umlaut appears in the search > result it is disp

German Umlaute

2004-09-16 Thread Philipp Roethl
Hi, I.m currently facing a weired problem. I use a form to provide a search function. When I do not use any special character in this form everything is fine. As soon as I enter e.g. "Rö" the corresponding form value is set to "Rö" If an umlaut appears in the search result it is display correctl

RE: Special Characters (german Umlaute)

2004-05-04 Thread Kransen, J.
tendency seems to be that using different character encodings is becoming more and more transparent. > -Oorspronkelijk bericht- > Van: Ralf Schneider [mailto:[EMAIL PROTECTED] > Verzonden: dinsdag 4 mei 2004 10:34 > Aan: Struts Users Mailing List > Onderwerp: Re: Special Chara

Re: Special Characters (german Umlaute)

2004-05-04 Thread Ralf Schneider
Am Montag, 3. Mai 2004 21:57 schrieb Ruth, Brice: > You can use the native2ascii application that is bundled with your JDK to > automatically convert your native-encoded file with umlauts to \u > format encodings. Thanks, works fine! The only thing I have to manage now is to automate this ta

RE: Special Characters (german Umlaute)

2004-05-03 Thread Ruth, Brice
Mailing List Subject: Re: Special Characters (german Umlaute) Hi Ralf, use unicode in the resource bundle. \u00c4 = Ä \u00e4 = ä and so on. A complete chart is available here: http://www.unicode.org/charts/PDF/U0080.pdf greetings mattes -- Mattes Balser | [EMAIL PROTECTED] High-End Services

Re: Special Characters (german Umlaute)

2004-05-03 Thread mattes
Hi Ralf, use unicode in the resource bundle. \u00c4 = Ä \u00e4 = ä and so on. A complete chart is available here: http://www.unicode.org/charts/PDF/U0080.pdf greetings mattes -- Mattes Balser | [EMAIL PROTECTED] High-End Services GmbH | www.nervmich.net

Special Characters (german Umlaute)

2004-05-03 Thread Ralf Schneider
Hi, my web application loads german strings from a resource bundle. Unfortunately, the special characters (german Umlaute like Ã, Ã, Ã) are displayed incorrectly if they come from the resource bundle. When I write them directly into the HTML code they are displayed correctly. At the beginning