Yuci Gou created WICKET-4994:
--------------------------------

             Summary: Make URLs (i.e. mount paths) case insensitive for Wicket 6
                 Key: WICKET-4994
                 URL: https://issues.apache.org/jira/browse/WICKET-4994
             Project: Wicket
          Issue Type: Improvement
          Components: wicket
    Affects Versions: 6.3.0
            Reporter: Yuci Gou
            Priority: Minor


Hi,

This is not supported at the moment.
Please file a ticket to improve it.


On Tue, Jan 15, 2013 at 6:14 PM, Yuci G EBI <ygou....@gmail.com> wrote:

> Hello,
>
> Wonder how to make URLs (i.e. mount paths) case insensitive for Wicket 6?
> For example, make these two URLs do the same thing: localhost/AboutUs and
> localhost/aboutus
>
> I understand for Wicket 1.4.x, you could achieve it in the way below:
>
> public class DemoApplication extends WebApplication
> {
>     @Override
>     protected IRequestCycleProcessor newRequestCycleProcessor() {
>         return new WebRequestCycleProcessor() {
>             @Override
>             protected IRequestCodingStrategy newRequestCodingStrategy() {
>                 WebRequestCodingStrategy.**Settings strategySettings =
> new WebRequestCodingStrategy.**Settings();
>                 strategySettings.**setMountsCaseSensitive(false);
>                 return new WebRequestCodingStrategy(**strategySettings);
>             }
>         };
>     }
> }
>
> Many thanks,
> Eusie
>
> ------------------------------**------------------------------**---------
> To unsubscribe, e-mail: 
> users-unsubscribe@wicket.**apache.org<users-unsubscr...@wicket.apache.org>
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


-- Martin Grigorov jWeekend Training, Consulting, Development 
http://jWeekend.com <http://jweekend.com/> 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to