It should *not* be necessary to convert é into è
Are you going to convert ALL 'strange' characters that come out of
your database ?
I am a wicket newbie and I don't know the wicket-way to solve this
(nor if there is a wicket way)
but we're using this filter and it works great :
<!-- this filter will set the CharacterEncoding for all requests to UTF-8 -->
<filter>
<filter-name>CharacterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CharacterEncodingFilter</filter-name>
<url-pattern>...</url-pattern>
regards,
Maarten
On Fri, May 30, 2008 at 4:22 PM, Fabien D. <[EMAIL PROTECTED]> wrote:
>
> yes, i see it in the generated code
>
> Jonas-21 wrote:
>>
>>> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
>>
>> does the actual http header also say this? afair having this line in the
>> html
>> isn't enough to have contents treated as utf-8
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>>
>
> --
> View this message in context:
> http://www.nabble.com/Problem-with-Stress-tp17556788p17560140.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>