serving file name in unicode

2005-08-10 Thread Arun Prasad R
hi there, im facing problem in tomcat serving a file with unicode name. pls help in this regard thanks in advance, arun

unicode ??

2005-03-23 Thread Gaurav Arora
Hi I have a stupid question to ask. Does Tomcat 5.5 supports UTF-8 encoding format ? thanks regards Gaurav Arora __ Do you Yahoo!? Yahoo! Small Business - Try our new resources site! http://smallbusiness.yahoo.com/resources/

Re: unicode ??

2005-03-23 Thread Tim Funk
yup -Tim Gaurav Arora wrote: Hi I have a stupid question to ask. Does Tomcat 5.5 supports UTF-8 encoding format ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-14 Thread Ivan Jouikov
I tried to use table with CHARACTER SET UTF8, but it didn't change anything :( Any other suggestions? -Original Message- From: Koon Yue Lam [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 9:50 PM To: Tomcat Users List Subject: Re: Retrieveing Unicode stuff from MySQL 4.1.x

Re: Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-14 Thread Andr Weidemann
Ivan Jouikov wrote: I tried to use table with CHARACTER SET UTF8, but it didn't change anything :( Any other suggestions? I'm using a line like the one below to connect to the MySQL DB and it is working quite well here:

RE: Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-14 Thread Ivan Jouikov
I tried using those URL parameters. Doesn't change anything. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 14, 2004 2:30 AM To: Tomcat Users List Subject: Re: Retrieveing Unicode stuff from MySQL 4.1.x ? Ivan Jouikov wrote: I tried

Re: Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-14 Thread Mark Matthews
: Retrieveing Unicode stuff from MySQL 4.1.x ? | |Ivan Jouikov wrote: | |I tried to use table with CHARACTER SET UTF8, but it didn't change | |anything :( | |Any other suggestions? | |I'm using a line like the one below to connect to the MySQL DB and it is |working quite well here: | |DBUrl=jdbc:mysql

Re: Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-14 Thread Koon Yue Lam
Yes, I can't agree with this more u need to do sdome testing, use JUnit if u can But I would prefer not only use String.equals, but actually print out the HEX value of the string u need to print out the HEX value in: Just before the JSP form start submit when the action start process the form just

Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-13 Thread Ivan Jouikov
Unicode stuff correctly). However, what is troubling me, is that when I retrieve that Unicode stuff from DB and try to display it, I get a whole bunch of junk on my page. Heres how I retrieve it: /** * Returns a list containing GuestBookEntry's ordered by date. * @param page from which page

Re: Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-13 Thread Koon Yue Lam
Hi, I am not en expert, just some piece of advice I know from MySql 4.01, u can define the character encoding on each database, table and column. Are u sure your column is encoded in unicode? Because the GUI client may smart enought to auto convert the encoding, so u can view the character

RE: Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-13 Thread Ivan Jouikov
Hmm any idea how to define that? -Original Message- From: Koon Yue Lam [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 9:34 PM To: Tomcat Users List Subject: Re: Retrieveing Unicode stuff from MySQL 4.1.x ? Hi, I am not en expert, just some piece of advice I know from

Re: Retrieveing Unicode stuff from MySQL 4.1.x ?

2004-07-13 Thread Koon Yue Lam
http://dev.mysql.com/doc/mysql/en/Charset-defaults.html in your case, u just define everything as unicode, so just set the database encoding to unicode hopes this help - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Tomcat/JDBC/Unicode

2003-08-14 Thread Kurt Overberg
I'm having a rather strange problem that I'm hoping someone can help me with. I'm using Struts 1.0/jsp on Debian linux under Tomcat 4.1.x and the blackdown JVM against PostgreSQL 7.3.2 . I'm attempting to convert my current SQL_ASCII database to UNICODE. I'm new to this, so am most likely

Re: Simple question on Unicode URL in Tomcat

2003-06-03 Thread John Z Yang
Dear all: I have a simple question regarding to the Unicode URL support in Tomcat. If I pass a Unicode URL to Tomcat, can it retrieve the targeted content? Some of our web pages are named under double byte characters. We have tried various ways but all have failed. If you have a work around

Does Tomcat support Unicode URL

2003-06-03 Thread John Z Yang
We still have not figure out a way to resolve doublebyte URL's with Tomcat. I.E. if we have an jsp or htm file name which is in Unicode, it seems that tomcat has no way to load that page. We tried to encode the characters with % URL encoding, but seems not working. Can anyone help? Thanks. John

RE: Does Tomcat support Unicode URL

2003-06-03 Thread Shawn
Well Java 1.4 does. Did you try something like: %=URLEncoder.encode(s, enc)% s is your URL and enc is the java encoding such as Shift_JIS. See URLEncoder for more info. Will work from java 1.4 I believe. Had the same problem and this seems to solve it just fine. I had to set the correct

Simple question on Unicode URL in Tomcat

2003-06-02 Thread John Z Yang
Dear all: I have a simple question regarding to the Unicode URL support in Tomcat. If I pass a Unicode URL to Tomcat, can it retrieve the targeted content? Some of our web pages are named under double byte characters. We have tried various ways to make it work but all failed. If you have a work

Re: Simple question on Unicode URL in Tomcat

2003-06-02 Thread Shawn
Hiho, try something like: String s = URLEncoder.encode(s, enc); s is your URL and enc is the java encoding such as Shift_JIS. See URLEncoder for more info. Will work from java 1.4 I believe. Had the same problem and this seems to solve it just fine. -- Shawn Happily using M2, Opera's

RE: handling of Unicode still broken in 4.1.24

2003-03-27 Thread Bodycombe, Andrew
To: [EMAIL PROTECTED] Subject: handling of Unicode still broken in 4.1.24 Hello, I've been using Tomcat 4.0.6 for some time now, because neither 4.1.12 nor 4.1.18 handled my Unicode correctly. When 4.1.18 came out, my co-worker Paul Caton posted to this list asking for help on this issue. I had

handling of Unicode still broken in 4.1.24

2003-03-26 Thread Carole Mah
Hello, I've been using Tomcat 4.0.6 for some time now, because neither 4.1.12 nor 4.1.18 handled my Unicode correctly. When 4.1.18 came out, my co-worker Paul Caton posted to this list asking for help on this issue. I had supposed by now the issue would have been solved, so I cheerily

Re: handling of Unicode still broken in 4.1.24

2003-03-26 Thread Jacob Kjome
Post a bug to bugzilla... http://nagoya.apache.org/bugzilla/ Or, if one already exists there, comment on that and raise the priority. Jake At 12:19 PM 3/26/2003 -0500, you wrote: Hello, I've been using Tomcat 4.0.6 for some time now, because neither 4.1.12 nor 4.1.18 handled my Unicode

Where did my Unicode go in 4.1.17?

2002-12-20 Thread Caton, Paul
I think I need the help of outside eyes, because I must be not seeing the forest for the trees. Under Tomcat 4.0.6 I was serving out XML which had Unicode code points for Arabic characters and in all decent browsers (Mozilla, Phoenix, Chimera, etc.) the Arabic displayed beautifully. Yesterday we

RE: Tomcat and Unicode parameters in URLs ???

2002-03-20 Thread Soefara Redzuan
] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: Tomcat and Unicode parameters in URLs ??? Date: Tue, 19 Mar 2002 07:51:46 -0500 If you can live with the Servlet 2.2 spec, Tomcat 3.3 has a work around for this. The DecodeInterceptor can accept

RE: Tomcat and Unicode parameters in URLs ???

2002-03-19 Thread Larry Isaacs
List Subject: Re: Tomcat and Unicode parameters in URLs ??? On Tue, 19 Mar 2002, Soefara Redzuan wrote: Date: Tue, 19 Mar 2002 09:20:47 +0800 From: Soefara Redzuan [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Tomcat

Re: Tomcat and Unicode parameters in URLs ???

2002-03-18 Thread Soefara Redzuan
Setting the content type, as you did above, only affects the *output* of that particular response -- it has nothing to do with how the next *input* request from that browser will be handled. In order to deal with request parameters in an incoming request, you must tell Tomcat what encoding to

Re: Tomcat and Unicode parameters in URLs ???

2002-03-18 Thread Craig R. McClanahan
On Tue, 19 Mar 2002, Soefara Redzuan wrote: Date: Tue, 19 Mar 2002 09:20:47 +0800 From: Soefara Redzuan [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Tomcat and Unicode parameters in URLs ??? Setting the content type, as you did

Tomcat and Unicode parameters in URLs ???

2002-03-16 Thread Mete Kural
Hello all, I tried a million ways of making Tomcat 4.0.3 work with Unicode URL parameters, but nothing seems to work. It always corrupts the parameters. Does anybody know a workaround to make Unicode request parameters work with Tomcat? For instance, I changed the SnoopServlet example given

Re: Tomcat and Unicode parameters in URLs ???

2002-03-16 Thread Craig R. McClanahan
On Sat, 16 Mar 2002, Mete Kural wrote: Date: Sat, 16 Mar 2002 11:05:08 -0800 (PST) From: Mete Kural [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Tomcat and Unicode parameters in URLs ??? Hello all, I tried a million ways of making

Problem with request parameter in UTF-8 (Unicode)

2001-04-06 Thread Frank Peters
figuration setting, like some sort of default character encoding? I have looked through loads of docs and the config files themselves, but I did not find anything (except for the "file.encoding=UTF_8" which I needed for sending the unicode pages). I would appreciate any help. TIA, Frank Peters

UNICODE

2001-01-21 Thread Krisztian Nemeth
Hello, can sombody tell me, how can I configure Tomcat not to convert UTF-8 to ISO-8859-1. If I transform my XML documents with org.apache.xalan.xslt.Process from the command line, the result html fil is OK. If I open the document locally in Netscape or IE with encoding UTF-8 I can see all the

Unicode translation?

2001-01-10 Thread Glen Campbell
21.0[B@79a49f[B@270107 It could be that the driver is doing something wrong (but why did it work during the test?), but it appears more likely that tomcat is doing something to the data: perhaps expecting Unicode? Any suggestions are appreciated. -- Glen Campbell [EMAIL