RE: How to get Tomcat to send proper charset?

2007-06-13 Thread Allen,Eva
e crept in, so: response.setContentType("text/html; charset="UTF-8") SHOULD BE response.setContentType("text/html; charset=UTF-8") Andy -Original Message- From: Allen,Eva [mailto:[EMAIL PROTECTED] Sent: 13 June 2007 04:36 To: Tomcat Users List Subject: How to get Tomc

How to get Tomcat to send proper charset?

2007-06-12 Thread Allen,Eva
We just recently switched our platform from tomcat 4.124 to Tomcat 5.5.23 and now languages Japanese, Chinese (traditional) and Chinese (simplified) are not displaying properly. Here's a little background. We use servlets to build HTML code to be output (please no comments on how bad an idea thi

getSystemResource not working in servlet

2006-10-31 Thread Allen,Eva
I'm still having problems with getting xmlrules to work within a Tomcat servlet container. I pretty much snagged the code I use from the xmlrules example that comes with the digester source. The problem comes with the getSystemResource call. I keep getting a null URL. I finally named the rules

RE: Using tomcat with commons-digester in commons/lib won't work

2006-10-23 Thread Allen,Eva
riday, October 20, 2006 7:00 PM To: Tomcat Users List Subject: Re: Using tomcat with commons-digester in commons/lib won't work Allen,Eva wrote: > What gives? It looks like the version of commons-digester.jar that > comes with tomcat 4.1.24 isn't even compatible with it, but that can'

Using tomcat with commons-digester in commons/lib won't work

2006-10-20 Thread Allen,Eva
I want to use the Jakarta commons digester xmlrules package to parse the xml I get from a web service I access from within a service. This means I have to include four commons jar files within the classpath tomcat uses commons-digester, commons-logging, commons-beanutils and commons-collections.