RE: Charset Encoding problems with JSP Fragments (Tiles)

2003-10-23 Thread Ivica Pavic
oding problems with JSP Fragments (Tiles) On 10/23/2003 11:41 AM Ivica Pavic wrote: > I'm trying to set the UTF-8 charset for the whole application. I'm > using Struts/Tiles on Tomcat 4.1.27. For now the only way to achieve > this was adding <[EMAIL PROTECTED] contentTyp

RE: Charset Encoding problems with JSP Fragments (Tiles)

2003-10-23 Thread Ivica Pavic
Yeah I see, sad but true. That's what I've tried to avoid. Thx -Original Message- From: Jason Lea [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 1:09 PM To: Struts Users Mailing List Subject: Re: Charset Encoding problems with JSP Fragments (Tiles) I have had

Re: Charset Encoding problems with JSP Fragments (Tiles)

2003-10-23 Thread Jason Lea
I have had a similar experience with Tomcat 4.1.*. Though I seem to remember that putting this <%@ page contentType="text/html; charset=UTF-8"%> In the tiles layout page worked if Tomcat compiled the pages. But if I pre-compiled the jsp tiles it wouldn't work. My guess was that when pre-compi

Re: Charset Encoding problems with JSP Fragments (Tiles)

2003-10-23 Thread Adam Hardy
On 10/23/2003 11:41 AM Ivica Pavic wrote: I'm trying to set the UTF-8 charset for the whole application. I'm using Struts/Tiles on Tomcat 4.1.27. For now the only way to achieve this was adding <[EMAIL PROTECTED] contentType="text/html; charset=utf-8"%> on EVERY Tile (JSP). It's a lot of copy/

Charset Encoding problems with JSP Fragments (Tiles)

2003-10-23 Thread Ivica Pavic
I'm trying to set the UTF-8 charset for the whole application. I'm using Struts/Tiles on Tomcat 4.1.27. For now the only way to achieve this was adding <[EMAIL PROTECTED] contentType="text/html; charset=utf-8"%> on EVERY Tile (JSP). It's a lot of copy/paste job and I'm sure there should be a mo