Re: struts request encoding to utf-8 problem

2008-01-24 Thread wessam
In this case, you've isolated your problem to the database read/write phase, which means it's not a Struts issue. You'll need to look again at your database configuration and whatever middleware you're using to communicate with it (e.g. JDBC, Hibernate). The specifics will depend on

Re: struts request encoding to utf-8 problem

2008-01-23 Thread Robert Slama
try : request.setCharacterEncoding(encoding); response.setCharacterEncoding(encoding); filterChain.doFilter(request, response); r^ S pozdravom Robert Slama SpiritLine s.r.o. Bernolakova ul. 1A 901 01 Malacky [EMAIL PROTECTED] gsm: +421 905 122 841 tel: +421 34 778 20 88

Re: struts request encoding to utf-8 problem

2008-01-23 Thread wessam
i did add response.setCharacterEncoding(encoding), in EncodingFilter class but still output corrupted characters in the jsp :( i really need to solve this problem as soon as possible .. any help please ? -- View this message in context:

Re: struts request encoding to utf-8 problem

2008-01-23 Thread Laurie Harper
wessam wrote: i'm using struts 1.1, oracle 10g environment i'm facing a problem that i can't save special characters as ẻ, € from the page to database correctly though i used all the possible ways to set the encoding to utf-8 [...] the point is the the characters reaches the action class

Re: struts request encoding to utf-8 problem

2008-01-23 Thread Laurie Harper
Please keep discussions on the mailing list rather than replying to anyone directly, so the archives are complete. In this case, you've isolated your problem to the database read/write phase, which means it's not a Struts issue. You'll need to look again at your database configuration and