AW: default pageEncoding

2002-07-23 Thread Ralph Einfeldt
AFAIK it not possible to set the default encoding by configuration. But you could write a servlet filter that does this. -Ursprungliche Nachricht- Von: Dmitry Melekhov [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 23. Juli 2002 08:26 An: Tomcat Users List Betreff: Re: default

Re: AW: default pageEncoding

2002-07-23 Thread Dmitry Melekhov
Ralph Einfeldt wrote: AFAIK it not possible to set the default encoding by configuration. :-( But you could write a servlet filter that does this. Could you tell me how? As I understand, pageEncoding directive works at compile time and it is impossible to do this with filter?

AW: AW: default pageEncoding

2002-07-23 Thread Ralph Einfeldt
]] Gesendet: Dienstag, 23. Juli 2002 08:35 An: Tomcat Users List Betreff: Re: AW: default pageEncoding Could you tell me how? As I understand, pageEncoding directive works at compile time and it is impossible to do this with filter? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

Re: AW: AW: default pageEncoding

2002-07-23 Thread Dmitry Melekhov
Ralph Einfeldt wrote: Sorry, my answer was a bit to fast. There is more than one aspect of the encoding: - Compiletime This aspect defines which character set is/was used to write the source of the page. That's what you can define with the -encoding option of javac. I'm not

Re: AW: default pageEncoding

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, Dmitry Melekhov wrote: Date: Tue, 23 Jul 2002 11:35:27 +0500 From: Dmitry Melekhov [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: AW: default pageEncoding Ralph Einfeldt wrote: AFAIK