Re: charset problem

2004-02-04 Thread Michiel Meeuwissen
Sander de Boer [EMAIL PROTECTED] wrote: Since I have upgraded to tomcat 4.1.29(from 4.1.27) tomcat sets a default charset(ISO-8859-1) I set: % response.setContentType(audio/x-pn-realaudio); % [EMAIL PROTECTED] language=java contentType=audio/x-pn-realaudio % Tomcat gives: Content-Type:

Re: Charset problem

2002-02-04 Thread Gregor Kovaè
Hi! You should probably read mailing list archives. There has been a lot on this issue. Best regards, Kovi At 10:43 4.2.2002 +0100, you wrote: Hi, I think I have a charset problem. I don't know if this is a problem with tomcat configuration or java. System : Debian Woody Kernel

Re: Charset problem

2002-02-04 Thread Eric LOEW
Gregor Kovaè wrote: Hi! You should probably read mailing list archives. There has been a lot on this issue. Thank you for forwarding me a message from this mailing list with the same problem : %@ page info=Test page contentType=text/html; charset=iso-8859-2 %%! ... %% ... %html

Re: charset problem in java beans

2001-12-13 Thread yilmaz
: Thursday, December 13, 2001 10:51 AM Subject: Re: charset problem in java beans In Tomcat4, you can use the new Servlet 2.3 call request.setCharacterEncoding(). If you do this before calling any of the request.getParameter() type calls, Tomcat will do the translation for you. -- To unsubscribe

Re: charset problem in java beans

2001-12-12 Thread yilmaz
thanks Craig, Craig wrote : It sounds like you might be working too hard :-). how did you understand? :) Internally, Java keeps all String values in Unicode. When you actually write the response, it will be converted according to the character encoding you specify on the page.

Re: charset problem in java beans

2001-12-12 Thread Micael Padraig Og mac Grene
At 07:23 PM 12/12/01 +0800, you wrote: thanks Craig, Craig wrote : It sounds like you might be working too hard :-). how did you understand? :) Sounds as it fhe problem is either related to Geary's new book on taglibs or something similar. I don't know the history, but his critical

Re: charset problem in java beans

2001-12-12 Thread Craig R. McClanahan
: Wed, 12 Dec 2001 19:23:33 +0800 From: yilmaz [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: charset problem in java beans thanks Craig, Craig wrote : It sounds like you might be working too hard :-). how did you

Re: charset problem in java beans

2001-12-12 Thread yilmaz
- From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, December 13, 2001 2:20 AM Subject: Re: charset problem in java beans It's most likely an issue of where you got the data to load into your hashtable in the first place. For example, if it's

Re: charset problem in java beans

2001-12-12 Thread Craig R. McClanahan
On Thu, 13 Dec 2001, yilmaz wrote: Date: Thu, 13 Dec 2001 09:51:02 +0800 From: yilmaz [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: charset problem in java beans Okey,Craig you were right that before adding the item

Re: charset problem in java beans

2001-12-12 Thread Bryan Pieper
: On Thu, 13 Dec 2001, yilmaz wrote: Date: Thu, 13 Dec 2001 09:51:02 +0800 From: yilmaz [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: charset problem in java beans Okey,Craig you were right that before adding the item

Re: charset problem in java beans

2001-12-11 Thread Craig R. McClanahan
On Wed, 12 Dec 2001, yilmaz wrote: Date: Wed, 12 Dec 2001 11:16:00 +0800 From: yilmaz [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: charset problem in java beans hi everybody, i have posted a few emails a while ago about

RE: charset problem

2001-08-29 Thread Taavi Tiirik
-Original Message- From: Giannis [mailto:[EMAIL PROTECTED]] Sent: 27-08-2001 1:46 PM To: [EMAIL PROTECTED] Subject: charset problem I make some JSP pages on Jacarta tomcat. I have problem with the character set. I use content type ISO-8859-7 but the server doesnt appear the

Re: charset problem

2001-08-28 Thread Mario Garcia
Hi, I have too the same problem. You can use the next: Before start tomcat, use the next command export LANG=iso-8859-7 You can see all the codesets in your OS with: locale -a This works for me, in unix and linux. Bye. Mario García UNAM MEXICO . Sibi Joseph wrote: hi Giannis I

RE: charset problem

2001-08-27 Thread Martin van den Bemt
The simplest solution is to set you form to encode for UTF-8 and store the data as UTF-8. This way you can output your greek characters as UTF-8 and ISO-8859-7. Mvgr, Martin -Original Message- From: Giannis [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 1:46 PM To: [EMAIL

Re: charset problem

2001-08-27 Thread Sibi Joseph
hi Giannis I have the same problem .. pls let me know if u get any solutions for the same.. Thanks in advance sibi - Original Message - From: "Giannis" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 27, 2001 4:45 AM Subject: charset problem I make some JSP

Re: charset problem

2001-08-27 Thread yilmaz
hi Giannis i had the same problem no matter what i did, didn't help. at last the ParameterParser.class (which is bundled with oreilly package and can be downloaded from www.servlets.com) solved my problem. First try the straightforward method as below: String

RE: charset problem

2001-08-27 Thread Martin van den Bemt
I will send a simple example tonight how to get this solved without too much hassle.. Mvgr, Martin -Original Message- From: yilmaz [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 3:01 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: charset problem hi Giannis i

RE: charset problem

2001-01-05 Thread Birte Glimm
Hi, I tried your HelloWorldExample and for me it works fine. My configuration is: Win 2000 engl., Tomcat 3.2.1 standalone. I tried the URLs http://my_ip/servlet/HelloWorldExample?name=André and http://my_ip/servlet/HelloWorldExample?name=Andr%E9 and both worked fine Birte Glimm

RE: charset problem

2001-01-04 Thread Kitching Simon
I think the most likely cause is that it is your SQL statement that is throwing an exception when you try to insert non-ascii characters into a text column in the database. Java text is all based on UNICODE, so it is unlikely that tomcat has any problems at all with special characters. So the

RE: charset problem

2001-01-04 Thread Michael Wentzel
I think the most likely cause is that it is your SQL statement that is throwing an exception when you try to insert non-ascii characters into a text column in the database. Java text is all based on UNICODE, so it is unlikely that tomcat has any problems at all with special characters.

RE: charset problem

2001-01-04 Thread G.Nagarajan
Hi, Just check if the following solve your problem http://archives.java.sun.com/cgi-bin/wa?A2=ind0012L=servlet-interestP=R333 99 http://archives.java.sun.com/cgi-bin/wa?A2=ind0012L=servlet-interestP=R336 95 Regards, Nagaraj

RE: charset problem

2001-01-04 Thread Michael Wentzel
Does anything at all get inserted into the database or is the query simply ignored/Exception thrown/...? If you post the exact results of executing your query and a snippet of code used to do so it would help diagnose the problem. --- Michael Wentzel Software Developer Software As We Think

RE: charset problem

2001-01-04 Thread André Alves
The query is simply ignored. setting environment variable "TOMCAT_OPTS=-Dfile.encoding=ISO8859_1", not work. Is like tomcat recived the request but made nothing . I enter data in the simple html form. tomcat receives this datas, and send the end page, as if the data were inserted but, when I

RE: charset problem

2001-01-04 Thread Kitching Simon
[SMTP:[EMAIL PROTECTED]] Sent: Thursday, January 04, 2001 8:04 PM To: [EMAIL PROTECTED] Subject: RE: charset problem The query is simply ignored. setting environment variable "TOMCAT_OPTS=-Dfile.encoding=ISO8859_1", not work. Is like tomcat recived the request but made nothin

RE: charset problem

2001-01-04 Thread André Alves
To: [EMAIL PROTECTED] Subject:RE: charset problem The query is simply ignored. setting environment variable "TOMCAT_OPTS=-Dfile.encoding=ISO8859_1", not work. Is like tomcat recived the request but made nothing . I enter data in the simple html form. tomcat receives t

RE: charset problem

2001-01-04 Thread Michael Wentzel
Another source of the problem could be the jdbc drivers you are using. What database are you using? What jdbc drivers are you using? I don't think this is the problem but figured it's worth a go. --- Michael Wentzel Software Developer A HREF="http://www.aswethink.com"Software As We