Hi,
I configured my CharacterEncodingFilter correctly. Input Chinese characters through form posting is working fine. I am able to store and display Chinese characters successfully.
To make my pagination working, I need to support Chinese characters in URL. I am using jstl construct the url:
search.do?query=${query}
when I hit the url, I can see the chinese characters are shown in browser status bar successfully, however, wrong characters are picked up on the server side, so no result shown.
Does anyone has experience to make Non-ASCII in URL working?
thanks,
laker


Reply With Quote
): First there is a page encoding. Usually browser use the page encoding for sending the next request, but they don't set the corresponding request header. An application should therefore read requests the same way the send the response.
We switched to form a form and hidden parameters and the links where changed to buttons. A form is submitted in page encoding.