Re: Tomcat 7.0.19 character encoding issue with JSP

2011-09-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, On 9/1/2011 3:00 PM, David Wall wrote: > Thanks for all the tips and ideas! If you had already read this: http://wiki.apache.org/tomcat/FAQ/CharacterEncoding ...and it didn't help, we welcome any suggestions. Feel free to make any editions y

Re: Tomcat 7.0.19 character encoding issue with JSP

2011-09-01 Thread David Wall
You are right about the encoding of the .java file in Eclipse. I tried in 'vi' and sure enough the codes are in there correctly. Interesting that Eclipse opened the .jsp file and showed it nicely, but the .java file was not. I couldn't do the properties, though, since these files are not par

Re: Tomcat 7.0.19 character encoding issue with JSP

2011-09-01 Thread Konstantin Kolinko
2011/9/1 David Wall : > Thanks for the ideas, Mark, but it's still the same undesirable result. > > On 9/1/2011 6:58 AM, Mark Thomas wrote: >> >> I suspect you need: >> <%@ page pageEncoding="UTF-8" %> >> at the start of your JSP. >> >> .java files are written using UTF-8 by default so if what you

Re: Tomcat 7.0.19 character encoding issue with JSP

2011-09-01 Thread David Wall
Thanks for the ideas, Mark, but it's still the same undesirable result. On 9/1/2011 6:58 AM, Mark Thomas wrote: I suspect you need: <%@ page pageEncoding="UTF-8" %> at the start of your JSP. .java files are written using UTF-8 by default so if what you see there is wrong then the original .jsp

Re: Tomcat 7.0.19 character encoding issue with JSP

2011-09-01 Thread Mark Thomas
On 01/09/2011 03:41, David Wall wrote: > I'm trying to track down a character encoding issue that I've been > having, but don't really understand. Hopefully one of you will know what > the answer is. I suspect you need: <%@ page pageEncoding="UTF-8" %> at the start of your JSP. .java files are wr