Re: serving japanese file problem

2005-08-16 Thread Mark Thomas
You need to change your connector element(s) in server.xml Mark Arun Prasad R wrote: > thanks Mark,Hiroshi > > but how do i specify this in tomcat configuration. in which config file i > need to change. what are the changes to be done to achive this. > pls help. im newbie > > arun > > On 8/12

Re: serving japanese file problem

2005-08-15 Thread Arun Prasad R
thanks Mark,Hiroshi but how do i specify this in tomcat configuration. in which config file i need to change. what are the changes to be done to achive this. pls help. im newbie arun On 8/12/05, Mark Thomas <[EMAIL PROTECTED]> wrote: > > Arun Prasad R wrote: > > i have a ウェブ.jpg (japanese file

Re: serving japanese file problem

2005-08-12 Thread Hiroshi Iwatani
Check whether EVERYTHING is UTF8 including file names on your OS file system, JSP/servlet sourcfile encoding, request and response. Arun Prasad R wrote: > thanks Hiroshi, > > I set -Dfile.encoding=UTF-8 while starting tomcat and my platform support > UTF-8 creation. > > servlet is same as what

Re: serving japanese file problem

2005-08-12 Thread Mark Thomas
Arun Prasad R wrote: > i have a ウェブ.jpg (japanese filename) in images directory. > while requesting that file url encode to %E3%82%A6%E3%82%A7%E3%83%96.jpg > > but tomcat doesn't serve ウェブ.jpg instead it says file not found. > > my question is how to make tomcat to decode > %E3%82%A6%E3%82%A7%E3%

Re: serving japanese file problem

2005-08-12 Thread Arun Prasad R
thanks Hiroshi, I set -Dfile.encoding=UTF-8 while starting tomcat and my platform support UTF-8 creation. servlet is same as what u have specifed but i get broken image(ie file not found) arun On 8/12/05, Hiroshi Iwatani <[EMAIL PROTECTED]> wrote: > > Your tomcat isn't running with UTF-8 and

Re: serving japanese file problem

2005-08-12 Thread Hiroshi Iwatani
Your tomcat isn't running with UTF-8 and/or your platform doesn't use UTF-8 for file name. On my Linux Fedora Core 3: echo $LANG == ja_JP.UTF-8 means text file(including .java) and file name on OS file system are created with UTF8 encoding. on our servl