SSI Servlet Character Encoding Problem

2005-09-14 Thread KEREM ERKAN
Hi people, I use Tomcat 5.5.9 with Apache 2.0.54 and jk 1.2.10 to serve my websites. I want to set custom error pages to be served when an error like 404, 500 etc. occurs. The website uses the iso-8859-9 character set on every page, and the error pages are encoded with iso-8859-9 too. Only *.js

Re: Character encoding question

2005-08-29 Thread Richard Jones
lem with the RequestDumperValve. I don't think there are any other filters which happen before the main servlet processing. We have a super-servlet which does setCharacterEncoding before the extending servlet touches anything, so it should be ok. > Also what is the character encoding used by the OS ?.

Re: Character encoding question

2005-08-29 Thread Anto Paul
The setCharacterEncoding() must be called on the request before any getParameter() method is invoked on it. There may be some filters that is processing the request in the filter chain before the setCharacter encoding filter. Also what is the character encoding used by the OS ?. URIEncoding

Re: Character encoding question

2005-08-29 Thread Richard Jones
nd as part of > URI one has to set the URIEncoding attribute of the coyote Connector > element in server.xml. > b, Use a filter to set the character encoding of the request before it > is processed. > public void doFilter(ServletRequest req,ServletResponse res,FilterChain >

Re: Character Encoding question

2005-08-29 Thread Manfred Steurer
Just a guess: Check the format of the .jsp-files. I had similar problems and solved them by converting the jsp-files to UTF-8. - Manfred Richard Jones wrote: Hi All, I am having problems with Scandinavian characters on my system and am attempting to isolate the problem; any help would be g

Re: Character encoding question

2005-08-29 Thread Anto Paul
first: To support UTF encoded data send as part of URI one has to set the URIEncoding attribute of the coyote Connector element in server.xml. b, Use a filter to set the character encoding of the request before it is processed. public void doFilter(ServletRequest req,ServletResponse

Character Encoding question

2005-08-29 Thread Richard Jones
Hi All, I am having problems with Scandinavian characters on my system and am attempting to isolate the problem; any help would be greatly appreciated. The problem manifests when forms are posted containing Scandinavian characters. In some cases these characters are de/encoded correctly and in o

Character encoding question

2005-08-29 Thread Richard Jones
Hi All, I am having problems with Scandinavian characters on my system and am attempting to isolate the problem; any help would be greatly appreciated. The problem manifests when forms are posted containing Scandinavian characters. In some cases these characters are de/encoded correctly and in o

Tomcat 5.0.28 Character Encoding ISO-8859-9

2005-08-12 Thread Onur Kutlu GAGO
Hi, I have character set problem with Tomcat 5.0.28! I had the same problem with WAS6.0 and fixed it by setting -Dclient.encoding.override=ISO-8859-9 to the JVM parameters of WAS. Is there a setting where I can set the ENCODING? __ Yahoo! kull

Re: How to configure tomcat default character encoding ?

2005-07-26 Thread Mark Thomas
e=%E5%90%8D%E7%A7%B0 How to configure tomcat default character encoding to UTF-8 ? Dongsheng Song - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

How to configure tomcat default character encoding ?

2005-07-26 Thread Dongsheng Song
I user Tomcat 5.0.28, the browser send server UTF-8 query string like: QueryString: id=12&code=13&name=%E5%90%8D%E7%A7%B0 How to configure tomcat default character encoding to UTF-8 ? Dongsheng Song - To unsubscribe

Re: Tomcat optimization... saving internal strings with character encoding at compile time.

2005-05-29 Thread Remy Maucherat
On 5/29/05, Kevin Burton <[EMAIL PROTECTED]> wrote: > > Another area that I'm noticing that Tomcat is spending a LOT of time in > is with character encoding. Its not a ton of time but its really > showing up as one of the top 20 areas of our webapp. > > Internally

Tomcat optimization... saving internal strings with character encoding at compile time.

2005-05-29 Thread Kevin Burton
Another area that I'm noticing that Tomcat is spending a LOT of time in is with character encoding. Its not a ton of time but its really showing up as one of the top 20 areas of our webapp. Internally its either storing text as a java.lang.String or with genStrAsCharArray ... a char

Character encoding within form based autentication

2004-10-29 Thread Mark Doppelfeld
Hi out there, I'm still facing problems with the character encoding in TV 5.0.28. I'm not sure if it's wise to open another thread, but my further investigation have brought me to a new point, so I think it will be ok and I'll add the a link to this thread in my previous thre

Re: Character encoding in XML tag files?

2004-09-29 Thread Michael Schuerig
On Thursday 30 September 2004 02:01, Ben Souther wrote: > I've had similar problems on FedoraCore. > Setting the LANG evironment variable to: > en_US.iso885915 > took care of it. My normal locale is somewhat involved LANG=POSIX [EMAIL PROTECTED] [EMAIL PROTECTED] LC_TIME="POSIX" LC_COLLATE="POSIX

Re: Character encoding in XML tag files?

2004-09-29 Thread Ben Souther
I've had similar problems on FedoraCore. Setting the LANG evironment variable to: en_US.iso885915 took care of it. On Wed, 2004-09-29 at 18:58, Michael Schuerig wrote: > First things first, I'm using Tomcat 5.5.1. I'm moving some code from a > JSP document to tag files. All of the files are in

Character encoding in XML tag files?

2004-09-29 Thread Michael Schuerig
First things first, I'm using Tomcat 5.5.1. I'm moving some code from a JSP document to tag files. All of the files are in XML format. The head of one of my tag files looks like this http://java.sun.com/JSP/Page";> I'm precompiling the file with this ant target So

RE: Tomcat 5.0.28 broken character encoding handling

2004-09-20 Thread Mark Thomas
From: Michael J. Makunas [mailto:[EMAIL PROTECTED] > Sent: Monday, September 20, 2004 8:29 PM > To: Tomcat Users List > Subject: Re: Tomcat 5.0.28 broken character encoding handling > > Mark Thomas wrote: > >>From: Krzysztof Cieniuch [mailto:[EMAIL PROTECTED] > >

Re: Tomcat 5.0.28 broken character encoding handling

2004-09-20 Thread Michael J. Makunas
Mark Thomas wrote: From: Krzysztof Cieniuch [mailto:[EMAIL PROTECTED] set meta header content-type to UTF-8 meta headers have no effect in tomcat. Is this true of all meta headers (e.g, ,, , etc)? I'm using Tomcat 4.1. Thanks... -- ** Michael J. Makunas ** http://www.makunas.com/ **

RE: Tomcat 5.0.28 broken character encoding handling

2004-09-20 Thread Mark Thomas
4.1.30 did the same test no difference The TC4.1.x branch will also work using the example above > I realy don't understand why this is so hard to set character encoding > corectly. Again, the short answer is because the early internet technologies didn't handle this at all. Support for thi

Tomcat 5.0.28 broken character encoding handling

2004-09-20 Thread Krzysztof Cieniuch
ody part of request (I use method POST in my forms). searched google like maniac read couple hundrets of posts. I realy don't understand why this is so hard to set character encoding corectly. In some post i've read that iso8859-1 character encoding was hardcoded into tomcat 4.1.29 Is this

Re: JDT-Compiler character encoding

2004-09-08 Thread Michael Schuerig
On Wednesday 08 September 2004 16:07, Michael Schuerig wrote: > There seem to be two possible causes for the incorrect output > > the JDT compiler doesn't behave as advertised, i.e., it does not take > UTF-8 as default input encoding. *Or* the JDT compiler produces > character output in UTF-8 whic

JDT-Compiler character encoding

2004-09-08 Thread Michael Schuerig
I've tried the following for combinations of settings, where jspx denotes the encoding declared and used in my jspx document, jsp-javaEncoding is declared in conf/web.xml, and jasper-out is the relevant line in the generated xxx_jspx.java. (1) jspx: ISO-8859-1 jsp-javaEncoding: not explicitly s

Tomcat 5.5 character encoding problem

2004-09-02 Thread Michael Schuerig
Hello! I've tried my luck with Tomcat 5.5 and found that it behaves different than 5.0.27 does as regards character encoding. Somehow the conversion from ISO-8859-1 to UTF-8 doesn't work as it should. This may well be due to a misconfiguration. See below for the JSP document a

WG: ++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding.

2004-09-02 Thread Ben Bookey
[mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 1. September 2004 15:42 An: [EMAIL PROTECTED] Betreff: RE: ++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding. dear dear! this reminds me of when i was pulling my hair out for days 4 months back ;) are you saying that wh

Re: ++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding.

2004-09-02 Thread Nikola Milutinovic
Ben Bookey wrote: Hi Allistair, Nikola, et al. Allistair = what made you give up setting up the encoding via the -djvm ?? Nikola == Since you have to support multiple character sets, it would be cleaner if you chose UTF-8 for your DB, in the first place. I do realise that data conversi

++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding.

2004-09-02 Thread Ben Bookey
Mittwoch, 1. September 2004 15:42 An: [EMAIL PROTECTED] Betreff: RE: ++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding. dear dear! this reminds me of when i was pulling my hair out for days 4 months back ;) are you saying that when you submit a form, the euro correctly goe

AW: ++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding.

2004-09-01 Thread Ben Bookey
f-8 display) I would appreciate any support. regards Ben -Ursprüngliche Nachricht- Von: Allistair Crossley [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 1. September 2004 10:50 An: Tomcat Users List; [EMAIL PROTECTED] Betreff: RE: ++ Best practive ?? ++ (JSP-->Servlet-->Databa

Re: ++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding.

2004-09-01 Thread Nikola Milutinovic
that our database could end up containing records in different character encoding systems, which I suspect is what is now happening. First of all, Tomcat, being a Java based application, uses Unicode. JSP Page can specify it's *output* encoding and it should match whatever browser expects. T

RE: ++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding.

2004-09-01 Thread Allistair Crossley
e Connection URL jdbc:jtds:sqlserver://intratestgbr:1433/db_iQ;charset=Cp1252;TDS=7.0 We discovered that we _had_ to talk to the database using an encoding it understood. It turned out that Cp1252 was actually Latin1_General_CI_AS, so we make sure the character encoding is set on our database driver. 3. R

++ Best practive ?? ++ (JSP-->Servlet-->Database) character encoding.

2004-09-01 Thread Ben Bookey
accordingly to a chosen standard. This will then avoid the situation that our database could end up containing records in different character encoding systems, which I suspect is what is now happening. In addition, how does TC deal with framsets containing many html pages. Are they all treated

How to pre-determine the browser request character encoding type

2004-09-01 Thread Ben Bookey
quest is set to ISO-8859-1 and you lose the information, hence the ?. pageEncoding just sets the "response" encoding for the client and does not affect the other direction, i.e client => server. I am not sure if there is another setting where request character encoding can be set. Perha

RE: UTF-8 character encoding and Tomcat 5.0.25

2004-06-27 Thread Benson Margulies
June 27, 2004 3:29 PM > To: Tomcat Users List > Subject: Re: UTF-8 character encoding and Tomcat 5.0.25 > > > It seems all the accented characters in any language show > up as "?".. > > Thanks, Jason > > Benson Margulies wrote: > > &g

Re: UTF-8 character encoding and Tomcat 5.0.25

2004-06-27 Thread Jason Novotny
nday, June 27, 2004 7:59 AM To: Tomcat Users List Subject: UTF-8 character encoding and Tomcat 5.0.25 Hi, In upgrading my webapp from Tomcat 4.1.X to Tomcat 5.0.25, it seems UTF-8 character encoding no longer works as it did before. I've already read and followed advice from the T

RE: UTF-8 character encoding and Tomcat 5.0.25

2004-06-27 Thread Benson Margulies
What, exactly, is going wrong? Are the JSP pages mishandled? The request parameters? > -Original Message- > From: Jason Novotny [mailto:[EMAIL PROTECTED] > Sent: Sunday, June 27, 2004 7:59 AM > To: Tomcat Users List > Subject: UTF-8 character encoding and Tomcat 5.

UTF-8 character encoding and Tomcat 5.0.25

2004-06-27 Thread Jason Novotny
Hi, In upgrading my webapp from Tomcat 4.1.X to Tomcat 5.0.25, it seems UTF-8 character encoding no longer works as it did before. I've already read and followed advice from the Tomcat FAQ http://jakarta.apache.org/tomcat/faq/tomcatuser.html and read the bug reports related to this pr

Re: character encoding of jsp output in Tomcat 5.24 JRE 1.4.2_04 jvm.dll

2004-06-01 Thread Stephen Souness
After comparing the system properties output by a dump from a JSP page (source below), I noticed a difference between the file.encoding properties. Using the service configuration tool I was able to add the following to the JVM's configuration options: file.encoding=ISO-8859-1 Eureka! systemPro

character encoding of jsp output in Tomcat 5.24 JRE 1.4.2_04 jvm.dll

2004-06-01 Thread Stephen Souness
Hi, Does anyone have any hints as to why Tomcat would replace some characters with a question mark when being run inside the JVM dll on Windows, yet display the same characters correctly when run with java.exe ? - To unsubscribe

RE: Can I change Tomcat's default character encoding?

2004-05-28 Thread Dev Team
] Posted At: Thursday, May 27, 2004 2:20 AM Posted To: Tomcat Dev Conversation: Can I change Tomcat's default character encoding? Subject: RE: Can I change Tomcat's default character encoding? Thank you for the answer. I know about this possibility using filters (and I have done somethi

RE: Can I change Tomcat's default character encoding?

2004-05-27 Thread Yansheng Lin
that in your customized Writer. Hope it helps:). -Yan -Original Message- From: rlipi [mailto:[EMAIL PROTECTED] Sent: May 27, 2004 03:20 To: 'Tomcat Users List' Subject: RE: Can I change Tomcat's default character encoding? Thank you for the answer. I know about this poss

RE: Can I change Tomcat's default character encoding?

2004-05-27 Thread rlipi
Thank you for the answer. I know about this possibility using filters (and I have done something). But the original question (and my question) is about simpler way: Is it possible to globally set (somewhere in JVM or Tomcat configuration) default character encoding for all created Writers

RE: Can I change Tomcat's default character encoding?

2004-05-26 Thread Yansheng Lin
work for Tomcat 4 and up, or any other container that implement Servlet 2.3 and up. -Yan -Original Message- From: rlipi [mailto:[EMAIL PROTECTED] Sent: May 26, 2004 00:49 To: 'Tomcat Users List' Subject: RE: Can I change Tomcat's default character encoding? > ---

RE: Can I change Tomcat's default character encoding?

2004-05-25 Thread rlipi
> -Original Message- > From: Yansheng Lin [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 25, 2004 11:57 PM > To: 'Tomcat Users List' > Subject: RE: Can I change Tomcat's default character encoding? > > Also you may have to change > your > OS defa

RE: Can I change Tomcat's default character encoding?

2004-05-25 Thread Yansheng Lin
ect: Can I change Tomcat's default character encoding? We are having a host of problems with character encoding at the moment. Somehow between the UI and the Struts Action our euro symbols are being turned into question marks. I have fiddled with the JVM file.encoding, using JSP page directi

Re: Can I change Tomcat's default character encoding?

2004-05-24 Thread M.Hockings
Allistair Crossley wrote: We are having a host of problems with character encoding at the moment. Somehow between the UI and the Struts Action our euro symbols are being turned into question marks. I have fiddled with the JVM file.encoding, using JSP page directives for content type and much

Can I change Tomcat's default character encoding?

2004-05-24 Thread Allistair Crossley
We are having a host of problems with character encoding at the moment. Somehow between the UI and the Struts Action our euro symbols are being turned into question marks. I have fiddled with the JVM file.encoding, using JSP page directives for content type and much else besides. I thought Java

Re: DefaultServlet character encoding

2004-04-13 Thread Hassan Schroeder
Yansheng Lin wrote: You can use a filter Yuck. I was afraid that was going to be the best answer; seems really brain-dead that this isn't just configurable on at least a context (if not url-pattern) basis. Oh, well! btw, are you interested in joining an open-source project that's japanese related?

RE: DefaultServlet character encoding

2004-04-13 Thread Yansheng Lin
27;s not ("RedHat" != "NT")... Three up, three down -- anyone else care to try next inning? C'mon, swing for the fence... :-) >>-Original Message- >>Subject: DefaultServlet character encoding >> >>Config: Tomcat 4.1.29 -- Sun Java 1.4.2_01-

Re: DefaultServlet character encoding

2004-04-09 Thread Hassan Schroeder
quot;NT")... Three up, three down -- anyone else care to try next inning? C'mon, swing for the fence... :-) -Original Message- Subject: DefaultServlet character encoding Config: Tomcat 4.1.29 -- Sun Java 1.4.2_01-b06 -- RedHat ES Problem: static HTML pages meta-tagged to use Shi

RE: DefaultServlet character encoding

2004-04-09 Thread Allistair Crossley
I just alter the service.bat file to include this option and then reinstall the service :) -Original Message- From: Matt Woodings [mailto:[EMAIL PROTECTED] Sent: 09 April 2004 17:08 To: Tomcat Users List Subject: Re: DefaultServlet character encoding if your tomcat is a NT Service

Re: DefaultServlet character encoding

2004-04-09 Thread Matt Woodings
- Original Message - From: "Allistair Crossley" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Friday, April 09, 2004 10:56 AM Subject: RE: DefaultServlet character encoding or specify -Dfile.encoding=UTF or whatever in your tomca

RE: DefaultServlet character encoding

2004-04-09 Thread Allistair Crossley
or specify -Dfile.encoding=UTF or whatever in your tomcat startup -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: 09 April 2004 16:55 To: 'Tomcat Users List' Subject: RE: DefaultServlet character encoding Hi, Tomcat ignores META tags (for good reasons I w

RE: DefaultServlet character encoding

2004-04-09 Thread Mark Thomas
Hi, Tomcat ignores META tags (for good reasons I won't go in to). Use <%@ page pagEncoding="..." %>. Mark > -Original Message- > From: Hassan Schroeder [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 08, 2004 7:11 PM > To: [EMAIL PROTECTED] &g

DefaultServlet character encoding

2004-04-08 Thread Hassan Schroeder
Config: Tomcat 4.1.29 -- Sun Java 1.4.2_01-b06 -- RedHat ES Problem: static HTML pages meta-tagged to use Shift_JIS are sent as ISO-8859-1. All the googling I've done turns up the suggestion to start Tomcat with -Dfile.encoding=UTF-8 in either JAVA_OPTS or CATALINA_OPTS to make UTF-8 the default.

Request character encoding

2004-03-24 Thread Victor Anyakin
Hello to all List Readers, Could you please tell, how HttpServletRequest CharacterEncoding is set? My JVM has default character encoding set to cp1251, JSP pages are set to be encoded in UTF-8 (by corresponding directives), and it seems that browsers return form data encoded also in UTF-8

Re: character encoding issue

2003-12-15 Thread Adam Hardy
r form and if this solves your problem, then you're hit by it. sk Adam Hardy wrote: This is something I thought I had sorted out but somehow it popped its ugly head up again today. I have tomcat 5.0.16 and I'm setting the character encoding for my JSPs in the web.xml with the

Re: character encoding issue

2003-12-15 Thread Stefanos Karasavvidis
is something I thought I had sorted out but somehow it popped its ugly head up again today. I have tomcat 5.0.16 and I'm setting the character encoding for my JSPs in the web.xml with the new config mechanism: All JSPs /WEB-INF/general/* false UTF-8

character encoding issue

2003-12-14 Thread Adam Hardy
This is something I thought I had sorted out but somehow it popped its ugly head up again today. I have tomcat 5.0.16 and I'm setting the character encoding for my JSPs in the web.xml with the new config mechanism: All JSPs /WEB-INF/general/* false

Re: Issue with Tomcat 4.1.29 default Character Encoding

2003-11-12 Thread Remy Maucherat
I have done some searching in the documentation and in the Tomcat source on how we can disable the charset being appended - but to no avail so far (I know we can change the character encoding in the wrapper implementation of Response, but at that point in the code we only have access to the HttpSe

RE: Issue with Tomcat 4.1.29 default Character Encoding

2003-11-12 Thread Chris Haskins
showpdf.jsp?.pdf' I know this isn't a fix for tomcat but I believe the problem is not caused by Tomcat. I hope this helps. Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 12 November 2003 14:16 To: [EMAIL PROTECTED] Subject: Issue with Tomca

Issue with Tomcat 4.1.29 default Character Encoding

2003-11-12 Thread SMcGarrity
ome searching in the documentation and in the Tomcat source on how we can disable the charset being appended - but to no avail so far (I know we can change the character encoding in the wrapper implementation of Response, but at that point in the code we only have access to the HttpServletResponse object - whi

Re: character encoding, JAAS, servlet filter vs. valve

2003-09-24 Thread Adam Hardy
Well post a message if you manage to sort it out. I now wasting time trying to get emacs to work with unicode, but when I've done that, I'll should be able to try out the same thing as you. The way I see it, as long as the html login page going out to the browser has character-encod

Re: character encoding, JAAS, servlet filter vs. valve

2003-09-24 Thread Joerg Heinicke
Adam Hardy wrote: albeit - does not sound very English, but my dictionary knows it :-) Pronounced all - be - it which makes it sounds like 3 seperate but very english words. Never did know what it meant. Did I use it correctly? 8-) At least the translation in my dictionary makes sense :-P This bec

Re: character encoding, JAAS, servlet filter vs. valve

2003-09-24 Thread Joerg Heinicke
Adam Hardy wrote: I can't see why. Perhaps you are overriding it later in the request processing? Struts uses response.setContentType() The docs say: overridden automatically if a * RequestDispatcher.forward() call is * ultimately invoked. but that leaves me none the wiser. Possible. I'

Re: character encoding, JAAS, servlet filter vs. valve

2003-09-23 Thread Adam Hardy
link this option sets only "the content type and character encoding ... on each response". This means it does not handle/influence the request character encoding. I have successfully ignored character-encoding on the request until this point. I am going to have read up about how

Re: character encoding, JAAS, servlet filter vs. valve

2003-09-23 Thread Adam Hardy
I can't see why. Perhaps you are overriding it later in the request processing? Struts uses response.setContentType() The docs say: overridden automatically if a * RequestDispatcher.forward() call is * ultimately invoked. but that leaves me none the wiser. Adam On 09/23/2003 03:25 PM

Re: character encoding, JAAS, servlet filter vs. valve

2003-09-23 Thread Joerg Heinicke
Joerg Heinicke wrote: I found http://jakarta.apache.org/struts/api/org/apache/struts/config/ControllerConfig.html#contentType and set the contentType in the struts-config.xml with . Does not work as expected. Mozilla recognizes the pages know as ISO-8859-1 and no longer UTF-8. Joerg -- System

Re: character encoding, JAAS, servlet filter vs. valve

2003-09-23 Thread Joerg Heinicke
Adam Hardy wrote: Hi Joerg, since you are using struts, why don't you ditch the SetCharacterEncodingFilter and set the character-encoding as a property of the struts controller? This means you also don't need anything in your JSPs. Ah, okay. It's our first Struts project and expe

Re: character encoding, JAAS, servlet filter vs. valve

2003-09-23 Thread Adam Hardy
Hi Joerg, since you are using struts, why don't you ditch the SetCharacterEncodingFilter and set the character-encoding as a property of the struts controller? This means you also don't need anything in your JSPs. I assume you are using form-based container-managed authenticati

character encoding, JAAS, servlet filter vs. valve

2003-09-23 Thread Joerg Heinicke
Hello, we have a Struts web application, that should use UTF-8 as character encoding. I set the content type for the HTML pages (JSP) as well as the character encoding on the request via the SetCharacterEncodingFilter delivered with Tomcat in the examples webapp. It works in the whole

Re[2]: Character Encoding problem (umlauts, etc).

2003-09-08 Thread Anton Tagunov
Hello Robert! RP> Thanks for the information Anton. But just getting rid of umlauts or other RP> international characters is not an option when you have clients that use RP> your software in other countries, that have those special characters. We RP> cannot rename user files or changed that data.

RE: Character Encoding problem (umlauts, etc).

2003-09-08 Thread Bodycombe, Andrew
PROTECTED] Sent: 08 September 2003 14:18 To: 'Tomcat Users List' Subject: RE: Character Encoding problem (umlauts, etc). Thanks for the information Anton. But just getting rid of umlauts or other international characters is not an option when you have clients that use your softwar

Re: Character Encoding problem (umlauts, etc).

2003-09-08 Thread Thomas Kellerer
Robert Priest schrieb: I have a servlet that catches a request for a file. How is the request sent? If sent via an HTML form, you need to include the accept-charset="UTF-8" attribute into your tag Thomas - To unsubscri

RE: Character Encoding problem (umlauts, etc).

2003-09-08 Thread Robert Priest
:) -Original Message- From: Anton Tagunov [mailto:[EMAIL PROTECTED] Sent: Saturday, September 06, 2003 5:46 AM To: Tomcat Users List Subject: Re: Character Encoding problem (umlauts, etc). Hello Robert! Robert Priest <[EMAIL PROTECTED]> wrote: RP> I am requesting

Re: Character Encoding problem (umlauts, etc).

2003-09-06 Thread Anton Tagunov
Hello Robert! Robert Priest <[EMAIL PROTECTED]> wrote: RP> I am requesting file : RP> "/38CF278C0186B466222FC48571080B83/51/dms00051/äää.txt" RP> but what is coming across in the request is: RP> "/38CF278C0186B466222FC48571080B83/51/dms00051/???.txt" Probably your browser is sending it that way?

RE: Character Encoding problem (umlauts, etc).

2003-09-04 Thread Jeff Tulley
is is in a JSP page (which of course becomes a servlet). Do I have to set the encoding in Tomcat perhaps? -Original Message- From: Robert Priest [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 5:16 PM To: '[EMAIL PROTECTED]' Subject: Character Encoding problem (umlauts,

RE: Character Encoding problem (umlauts, etc).

2003-09-04 Thread Robert Priest
This is in a JSP page (which of course becomes a servlet). Do I have to set the encoding in Tomcat perhaps? -Original Message- From: Robert Priest [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 5:16 PM To: '[EMAIL PROTECTED]' Subject: Character Encoding proble

Character Encoding problem (umlauts, etc).

2003-09-04 Thread Robert Priest
> I have a servlet that catches a request for a file. > > But if that file has characters such as an umlaut in it (for example: ä), > the path info is all wrong. > > For example: I am requesting file : > > "/38CF278C0186B466222FC48571080B83/51/dms00051/äää.txt" > > but what is coming across i

Re: help with SEVERE: Exception starting filter Set Character Encoding

2003-06-06 Thread Ian Warner
PM Subject: Re: help with SEVERE: Exception starting filter Set Character Encoding > Hi, firstly, thanks for the quick response. > > Let me answer you last comment first re "> Out of curiosity, why would you > expect an AIX port of tomcat from IBM > > (or anyone else)? Tomcat is

Re: help with SEVERE: Exception starting filter Set Character Encoding

2003-06-06 Thread Ian Warner
;[EMAIL PROTECTED]> Sent: Thursday, June 05, 2003 3:31 PM Subject: RE: help with SEVERE: Exception starting filter Set Character Encoding > > Howdy, > > >I get the error "SEVERE: Exception starting filter Set Character > Encoding > >java.lang.ClassNotFoundException

RE: help with SEVERE: Exception starting filter Set Character Encoding

2003-06-06 Thread Shapira, Yoav
Howdy, >I get the error "SEVERE: Exception starting filter Set Character Encoding >java.lang.ClassNotFoundException: filters.SetCharacterEncodingFilter" when >I start tomcat (see below). Do you have this class anywhere in your distribution? >I loaded Java 2 SDK 1.4

help with SEVERE: Exception starting filter Set Character Encoding

2003-06-06 Thread Ian Warner
Hi, I get the error "SEVERE: Exception starting filter Set Character Encoding java.lang.ClassNotFoundException: filters.SetCharacterEncodingFilter" when I start tomcat (see below). My environment is AIX 5.1: I loaded Java 2 SDK 1.4 (port for aix from ibm website) and tomcat 5.0 f

Re: Character encoding for form submissions

2003-04-03 Thread Mariusz Wiktorczyk
Olny filter can help you. But remember: from api - setCharacterEncoding public void setCharacterEncoding(java.lang.String env) throws java.io.UnsupportedEncodingException Overrides the name of the character encoding used in the body of this

Re: Character encoding for form submissions

2003-04-03 Thread Morris Jones
I've solved part of the puzzle. Character transcoding is NOT performed for forms that are enctype="multipart/form-data". Does anyone know if this is The Way It Is, or does Tomcat offer any character transcoding for multipart form data? Mojo On Thu, 3 Apr 2003, Morris Jones wrote: > I've been

RE: Character encoding for form submissions

2003-04-03 Thread Morris Jones
Fri, 4 Apr 2003, Chakradhar Tallam wrote: > have a look at this > > http://www.anassina.com/struts/i18n/i18n.html > > -Original Message- > From: Morris Jones [mailto:[EMAIL PROTECTED] > Sent: Friday, April 04, 2003 9:42 AM > To: [EMAIL PROTECTED] > Subject: Ch

RE: Character encoding for form submissions

2003-04-03 Thread Chakradhar Tallam
have a look at this http://www.anassina.com/struts/i18n/i18n.html -Original Message- From: Morris Jones [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 9:42 AM To: [EMAIL PROTECTED] Subject: Character encoding for form submissions I've been researching this for a while.

Character encoding for form submissions

2003-04-03 Thread Morris Jones
I've been researching this for a while. I'm using Tomcat 4.1.18, and struts 1.0.2. My app is successfully handling Unicode characters -- in all the actions, stored in the database, displayed on the HTML pages, using charset=UTF-8. But the only way I can find to get form data into Unicode in my f

Re: Problem with character encoding.

2003-04-02 Thread Mariusz Wiktorczyk
Boris Folgmann wrote: Mariusz Wiktorczyk schrieb: I have small web app with text fields (Struts ). When user types some strange character from UTF-8 (see http://fanthom.math.put.poznan.pl/~kosmat/problem/source.jpg) the output is different. Do you store the value in a database? Yes. F

Re: Problem with character encoding.

2003-04-02 Thread Boris Folgmann
Mariusz Wiktorczyk schrieb: > I have small web app with text fields (Struts ). When user > types some strange character from UTF-8 > (see http://fanthom.math.put.poznan.pl/~kosmat/problem/source.jpg) > the output is different. Do you store the value in a database? cu, boris -- Dipl.-In

Problem with character encoding.

2003-04-02 Thread Mariusz Wiktorczyk
character encoding? (response.setContentType("text/html; charset=UTF-8"); and System.setProperty("file.encoding", "UTF-8"); does not work) Mariusz Wiktorczyk Tomcat 4.1.12 & Struts 1.1 RC1 --

Re: jdbc, mysql and character encoding

2003-01-06 Thread Joel Rees
> It doesnt really matter, as long as you get the desired result in your > application... Well, actually, MSW2k supposedly can have optional languages/encodings loaded, chosen on a per-user basis, and the console supposedly does display the language and encoding the user is set up for. I'd assum

Re: jdbc, mysql and character encoding

2003-01-02 Thread Anastasios Angelidis
Well I know for a fact that if you are using windows, the console window canot display extended characters. Only the standard ASCII chars... It doesnt really matter, as long as you get the desired result in your application... All characters in the end are bytes, a byte is a byte it all depends

jdbc, mysql and character encoding

2003-01-02 Thread [EMAIL PROTECTED]
I've my jsp, where I simply want to fill a table with some "italian" characters: <% Class.forName("com.mysql.jdbc.Driver").newInstance(); Connection conn = DriverManager.getConnection ("jdbc:mysql://localhost:3306/jdbctest?useUnicode=true&characterEncoding=ISO-8859-1", "usrjdbc", "pwd"); St

Please help me out to set character encoding of JVM

2002-12-10 Thread kantha
Hi I am working on a web application. The language supported is "Japanease", I am using EUC-JP encoding type. My database [pgsql] is set for the EUC-JP. The problem here is JVM is not handeling EUC-JP Intially I started with tomcat3.2 and jdk1.3 after that I upgraded both as tomcat4 and jdk1

Please help me out to set character encoding of JVM

2002-12-09 Thread kantha
Hi I am working on a web application. The language supported is "Japanease", I am using EUC-JP encoding type. My database [pgsql] is set for the EUC-JP. The problem here is JVM is not handeling EUC-JP Intially I started with tomcat3.2 and jdk1.3 after that I upgraded both as tomcat4 and jdk1

What does tomcat with character encoding?

2002-10-15 Thread Ryszard Lach
Hi! Problem of non-US characters in Tomcat is returning again and again... My setup is: 1. Tomcat 4.0.5, SUN JDK 1.3.1, JSP page with <%@ page contentType="text/html;CHARSET=ISO-8859-2" %> 2. String variable 's' with some LATIN2 characters in JSP code 3. out.printlin(s) displays correctly

webapp's default character encoding

2002-09-27 Thread Koes, Derrick
How do I set the default character encoding for my webapp in tomcat? This electronic transmission is strictly confidential to Smith & Nephew and intended solely for the addressee. It may contain information which is covered by legal, professional or other privilege. If you are not the inte

Strange Behaviour with Character Encoding with tomcat 4.0.3 & 4.1.10

2002-09-20 Thread Sunny L. S. Chan
Hi all, I have a working multiple languges website which is running on tomcat 4.0.3. (i.e. ISO-8859-1 (English) / Big5 (trad CHinese) / Simp Chinese / Japanese / French / Thai) I manage the CharacterSet Encoding by using the method response.setContentType() for all the languages; When I port

Re: Character Encoding problem

2002-08-30 Thread Irina Lishchenko
On Wednesday 28 August 2002 13:17, you wrote: > Hi > > I am using tomact 4.0.4 and JDK1.3.1 > > I am trying to read parameter in hebrew from the URL but get '???' writing > Hebrew to the browser works fine > > I can not use req.setCharacterEncoding(java.lang.String env) (can not > compile the code

Re: Character Encoding problem

2002-08-28 Thread Bill Barker
"Nehemia Litterat" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Hi > > I am using tomact 4.0.4 and JDK1.3.1 > > I am trying to read parameter in hebrew from the URL but get '???' writing Hebrew to the browser works fine > > I can not use req.setCharacterEn

  1   2   >