Re: Input from a FORM - encoding problem SOLVED

2002-02-20 Thread Nikola Milutinovic
The solution was to set the character encoding on the request (not on the response) object. Aparently, the parameters of the request are fetched on method call, which is a nice thing :-) Thanks to all who helped. And, by the way, IE6 doesn't honour "enctype" of the FORM, just splashes it's

RE: Input from a FORM - encoding problem

2002-02-19 Thread Larry Isaacs
ng. You must use a Servlet 2.3 compliant container such as Tomcat 4.x to get the portable setCharacterEncoding() approach. Cheers, Larry > -Original Message- > From: Attila Szegedi [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 19, 2002 3:16 AM > To: Tomcat Users List >

RE: Input from a FORM - encoding problem

2002-02-19 Thread Satoshi Okamoto
CTED]] Sent: Tuesday, February 19, 2002 5:16 PM To: Tomcat Users List Subject: Re: Input from a FORM - encoding problem OK: he might try. I admit I've not used IE6, only IEs up to 5.5 and NN up to 4.72, but it's a fact that: - these browsers never appended a charset declaration to the Content-T

Re: Input from a FORM - encoding problem

2002-02-18 Thread Attila Szegedi
Arnold Shore" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: 2002. február 18. 16:58 Subject: RE: Input from a FORM - encoding problem > Re "Don't bother fiddling with attributes. I've done this before to > no avail": > &

Re: Input from a FORM - encoding problem

2002-02-18 Thread Attila Szegedi
- Original Message - From: "Nikola Milutinovic" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: 2002. február 18. 18:19 Subject: Re: Input from a FORM - encoding problem > Attila Szegedi wrote: > > Don't bother fiddling

Re: Input from a FORM - encoding problem

2002-02-18 Thread Nikola Milutinovic
Attila Szegedi wrote: > Don't bother fiddling with attributes. I've done this before to no avail. > > Right now, no matter what you specify as an encoding in a HTML page, most > browsers (all favorite IE and NN flavors) ignore it altogether and encode > the form data using the encoding in whi

RE: Input from a FORM - encoding problem

2002-02-18 Thread Arnold Shore
addresses speed issues; contact me in private mail and I can send it to you. Cheers, Attila. -- Attila Szegedi home: http://www.szegedi.org - Original Message - From: "Nikola Milutinovic" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> S

Re: Input from a FORM - encoding problem

2002-02-18 Thread Attila Szegedi
ivate mail and I can send it to you. Cheers, Attila. -- Attila Szegedi home: http://www.szegedi.org - Original Message - From: "Nikola Milutinovic" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: 2002. február 18. 15:17 Subject: Re:

Re: Input from a FORM - encoding problem

2002-02-18 Thread Nikola Milutinovic
> > FORM attribute > > accept-charset = charset list [CI] > This attribute specifies the list of character encodings for input data that is >accepted by the server processing this form. The value is a space- and/or >comma-delimited list of charset values. The client must interpret this

Re: Input from a FORM - encoding problem

2002-02-18 Thread Nikola Milutinovic
> try this ... > > > FORM attribute > > accept-charset = charset list [CI] > This attribute specifies the list of character encodings for input data that is >accepted by the server processing this form. The value is a space- and/or >comma-delimited list of charset values. The client

RE: Input from a FORM - encoding problem

2002-02-18 Thread Arnold Shore
I'm using something like the ff, which works for me with IE6 and IIS: mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 8:45 AM To: Tomcat Users List Subject: Input from a FORM - encoding problem ... Do I do that in HTML FORM that submits the data (most likely)? Or do I do that i

Re: Input from a FORM - encoding problem

2002-02-18 Thread David Cassidy
try this ... FORM attribute accept-charset = charset list [CI] This attribute specifies the list of character encodings for input data that is accepted by the server processing this form. The value is a space- and/or comma-delimited list of charset values. The client must interpret this l

Input from a FORM - encoding problem

2002-02-18 Thread Nikola Milutinovic
Hi all. I have a HTML FORM that I'd like to use to update data in my database. DB (PostgreSQL + Unicode) is configured and correctly loaded with Unicode data. Translations from UTF-8 -> Win-1250 works like a charm (and so does UTF-8 -> ISO-8859-2). In other words, displaying the data is OK