Character encoding question

2005-08-29 Thread Richard Jones
Hi All, I am having problems with Scandinavian characters on my system and am attempting to isolate the problem; any help would be greatly appreciated. The problem manifests when forms are posted containing Scandinavian characters. In some cases these characters are de/encoded correctly and in

Character Encoding question

2005-08-29 Thread Richard Jones
Hi All, I am having problems with Scandinavian characters on my system and am attempting to isolate the problem; any help would be greatly appreciated. The problem manifests when forms are posted containing Scandinavian characters. In some cases these characters are de/encoded correctly and in

Re: Character encoding question

2005-08-29 Thread Anto Paul
On 8/29/05, Richard Jones [EMAIL PROTECTED] wrote: Hi All, I am having problems with Scandinavian characters on my system and am attempting to isolate the problem; any help would be greatly appreciated. This is what I did to work with Tomcat. a, Set up Tomcat first: To support UTF encoded

Re: Character Encoding question

2005-08-29 Thread Manfred Steurer
Just a guess: Check the format of the .jsp-files. I had similar problems and solved them by converting the jsp-files to UTF-8. - Manfred Richard Jones wrote: Hi All, I am having problems with Scandinavian characters on my system and am attempting to isolate the problem; any help would be

Re: Character encoding question

2005-08-29 Thread Richard Jones
Hi, I am having problems with Scandinavian characters on my system and am attempting to isolate the problem; any help would be greatly appreciated. This is what I did to work with Tomcat. a, Set up Tomcat first: To support UTF encoded data send as part of URI one has to set the

Re: Character encoding question

2005-08-29 Thread Anto Paul
The setCharacterEncoding() must be called on the request before any getParameter() method is invoked on it. There may be some filters that is processing the request in the filter chain before the setCharacter encoding filter. Also what is the character encoding used by the OS ?. URIEncoding

Re: Character encoding question

2005-08-29 Thread Richard Jones
Hi, The setCharacterEncoding() must be called on the request before any getParameter() method is invoked on it. There may be some filters that is processing the request in the filter chain before the setCharacter encoding filter. Yeah, I think this was the problem with the