Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-10 Thread Dirk Forchel
Seems to be not a problem with Wicket but rather with Tomcat. The requestURI is not encoded correctly (see below). target Url: landing/M%C3%A4nner/men.html redirect_to_buffer targetUrl: landing/M%C3%A4nner/men.html targetUrl2: landing/M%C3%A4nner/men.html?1 storeBufferedResponse:

Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-10 Thread Dirk Forchel
Heureka, I found the solution by myself. I changed the URI encoding in my server.xml and all works fine: Connector port=8080 URIEncoding=UTF8/ -- View this message in context:

Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-10 Thread Martin Grigorov
Thanks for sharing, Dirk! On Wed, Apr 10, 2013 at 12:05 PM, Dirk Forchel dirk.forc...@exedio.comwrote: Heureka, I found the solution by myself. I changed the URI encoding in my server.xml and all works fine: Connector port=8080 URIEncoding=UTF8/ -- View this message in context:

REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-09 Thread Dirk Forchel
Hi, I've a problem with my optional parameter and encoded Umlauts. My example page is mapped with the MountedMapper on /landing/#{seoString}/${context}, where as seoString is the optional parameter and context is the required parameter. Bookmarkable page links are generated with the correct URL,

Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-09 Thread Martin Grigorov
Hi, Please create a ticket with a quickstart. On Tue, Apr 9, 2013 at 12:13 PM, Dirk Forchel dirk.forc...@exedio.comwrote: Hi, I've a problem with my optional parameter and encoded Umlauts. My example page is mapped with the MountedMapper on /landing/#{seoString}/${context}, where as

Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-09 Thread Dirk Forchel
Can give me a hint in which class the encoding for this redirect is done? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/REDIRECT-TO-BUFFER-and-Url-encoding-problem-with-Umlauts-tp4657840p4657844.html Sent from the Users forum mailing list archive at Nabble.com.

Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-09 Thread Martin Grigorov
org.apache.wicket.request.handler.render.WebPageRenderer On Tue, Apr 9, 2013 at 12:34 PM, Dirk Forchel dirk.forc...@exedio.comwrote: Can give me a hint in which class the encoding for this redirect is done? -- View this message in context: