Re: Weird Ajax non-English characters encoding problem.

2008-04-11 Thread Nils Tesdal
find another solution to this? Nils -Opprinnelig melding- Fra: Johan Compagner [mailto:[EMAIL PROTECTED] Sendt: 22. oktober 2007 23:00 Til: users@wicket.apache.org Emne: Re: Weird Ajax non-English characters encoding problem. is this reproduceable in a simple testcase? (junit) johan

Re: Weird Ajax non-English characters encoding problem.

2008-04-11 Thread Roman Zechner
: Johan Compagner [mailto:[EMAIL PROTECTED] Sendt: 22. oktober 2007 23:00 Til: users@wicket.apache.org Emne: Re: Weird Ajax non-English characters encoding problem. is this reproduceable in a simple testcase? (junit) johan On 10/22/07, Paolo Di Tommaso [EMAIL PROTECTED] wrote: I'm

Re: Weird Ajax non-English characters encoding problem.

2007-10-22 Thread Fabio Fioretti
Hi Matej and Johan, thanks for your replies. I'm using Latin1 because the page I'm talking about is part of a legacy web application fully encoded in ISO-8859-1. The application server it runs on is Tomcat 5.5, which defaults to Latin1, so it shouldn't be a problem. I tried to set the

Re: Weird Ajax non-English characters encoding problem.

2007-10-22 Thread Paolo Di Tommaso
I'm experiencing a similar problem i.e. I'm able to submit any Latin encoded characters but when I'm using an AjaxSubmitButton some characters are not encoded properly. This happens also specifying the right encoding with: getRequestCycleSettings().setResponseRequestEncoding(ISO-8859-1); So it

Re: Weird Ajax non-English characters encoding problem.

2007-10-22 Thread Johan Compagner
is this reproduceable in a simple testcase? (junit) johan On 10/22/07, Paolo Di Tommaso [EMAIL PROTECTED] wrote: I'm experiencing a similar problem i.e. I'm able to submit any Latin encoded characters but when I'm using an AjaxSubmitButton some characters are not encoded properly. This

Re: Weird Ajax non-English characters encoding problem.

2007-10-21 Thread Matej Knopp
I don't know tbh. I believe the request body is encoded in UTF-8. People usually use UTF-8, so no-one was complaining before. Can't you just use UTF-8? It's much safer than latin1. -Matej On 10/20/07, Johan Compagner [EMAIL PROTECTED] wrote: are you configuring wicket and you appserver

Re: Weird Ajax non-English characters encoding problem.

2007-10-20 Thread Johan Compagner
are you configuring wicket and you appserver correctly? in wicket you have to set the encoding you want to use why not just use utf8? else matej? How does the ajax submit work with encoding? It is still a normal post and how do we interpret it? On 10/19/07, Fabio Fioretti [EMAIL PROTECTED]

Re: Weird Ajax non-English characters encoding problem.

2007-10-19 Thread Fabio Fioretti
PS: I'm using Wicket 1.2.6. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Weird Ajax non-English characters encoding problem.

2007-10-19 Thread Fabio Fioretti
Hi all, thanks in advance for your time and suggestions. I'm building a really simple page made up of a form with a text area and a submit button (instance of Button). An AjaxFormSubmitBehavior that performs the save operation is added to the button. The page is encoded as follows: meta