Re: Wicket,tomcat and UTF-8

2008-09-04 Thread Ray trace
i solved it... making the steps as described in the initial post works. however make sure no calls to getparameter is done b4 the setcharencoding. i knew that, but someone had a function call for redirecting and it had a getparameter call. hence the setcharencoding wont work. all in al

Re: Wicket,tomcat and UTF-8

2008-08-29 Thread Ray trace
im really happy for all the help but... as stated in the top/first post i allready did all these things bro. but thx anyway Peter Ertl wrote: > > It's a standard tomcat problem that everybody sooner or later > encounters... > > This will work for you: > http://cagan327.blogspot.com/2006/05

Re: Wicket,tomcat and UTF-8

2008-08-29 Thread Peter Ertl
It's a standard tomcat problem that everybody sooner or later encounters... This will work for you: http://cagan327.blogspot.com/2006/05/utf-8-encoding-fix-tomcat-jsp-etc.html Just use the EncodingFilter and I bet my [EMAIL PROTECTED]@#$ it will work :-) Am 29.08.2008 um 11:04 schrieb Ray tra

Re: Wicket,tomcat and UTF-8

2008-08-29 Thread Ray trace
i dont think u actually read my post but thx anyways. as stated in the initial post i tried that allready. Emanuele Gesuato-2 wrote: > > Ray trace wrote: >> ino its wierd >> >> yes my browser says utf-8 . >> the mysql database is in utf-8. >> hibernate is utf-8. >> >> basically all is u

Re: Wicket,tomcat and UTF-8

2008-08-29 Thread Emanuele Gesuato
Ray trace wrote: ino its wierd yes my browser says utf-8 . the mysql database is in utf-8. hibernate is utf-8. basically all is utf-8 except the incoming post data.arg. true UTF-8 database schema is created with utf-8 ...so that hibernate tools generate the correct tables. all tho

Re: Wicket,tomcat and UTF-8

2008-08-29 Thread Ray trace
ino its wierd yes my browser says utf-8 . the mysql database is in utf-8. hibernate is utf-8. basically all is utf-8 except the incoming post data.arg. true UTF-8 database schema is created with utf-8 ...so that hibernate tools generate the correct tables. all though i dont think it

Re: Wicket,tomcat and UTF-8

2008-08-29 Thread Johan Compagner
This is weird by defaul wicket serves out everything in utf8 (yes you should configur tomcat about the url encoding your self) Even if you say something else then ajax will be fixed to utf8 because that is the spec. Are you sure that the browser says that it is not utf8?? If you look at the page

RE: Wicket,tomcat and UTF-8

2008-08-29 Thread Ray trace
i tried that ...however...then u cant use the ajax since it only uses xml utf-8 posting so that is not an option heresince i need special chars ...and allready have alot of ajax. Stefan Lindner wrote: > > I had the same problem some week ago but got no answer on this list. Now I > use > >

RE: Wicket,tomcat and UTF-8

2008-08-29 Thread Stefan Lindner
4M3. Wicket seems to ignore the XHTML header completely. Stefan -Ursprüngliche Nachricht- Von: Ray trace [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 29. August 2008 09:57 An: users@wicket.apache.org Betreff: Wicket,tomcat and UTF-8 Hi i have a problem with tomcat and wicket and UTF

Wicket,tomcat and UTF-8

2008-08-29 Thread Ray trace
Hi i have a problem with tomcat and wicket and UTF-8 im developing my first large wicket app. no matter what i do wicket dont seem to use the utf-8 settings i specified. the incoming request converts the incoming UTF-8 to iso-8859-1 (the default). only tried post since that what wicket uses. as