[Geoserver-devel] WMS and WFS requests case insensitive

Hi list,

Is it possible to send case insensitive WMS/WMF requests with Geoserver ?
I have tried the following request, with matchCase="false", and it doesn't work !

Regards

http://localhost:8080/geoserver/wfs?SERVICE=WFS&VERSION=1.0.0&REQUEST=GetFeature&TYPENAME=topp:localisant&FILTER=(<Filter><And><PropertyIsEqualTo><PropertyName>code_dep</PropertyName><Literal>66</Literal></PropertyIsEqualTo><PropertyIsEqualTo><PropertyName>nom_com</PropertyName><Literal>Les%20Angles</Literal></PropertyIsEqualTo><PropertyIsEqualTo><PropertyName>section</PropertyName><Literal>AH</Literal></PropertyIsEqualTo><PropertyIsEqualTo><PropertyName>numero</PropertyName><Literal>0041</Literal></PropertyIsEqualTo></And></Filter>)

http://localhost:8080/geoserver/wfs
?SERVICE=WFS
&VERSION=1.0.0
&REQUEST=GetFeature
&TYPENAME=topp:localisant
&FILTER=(
<Filter>
    <And>
        <PropertyIsEqualTo>
            <PropertyName>code_dep</PropertyName>
            <Literal>66</Literal>
        </PropertyIsEqualTo>
        <PropertyIsEqualTo matchCase="false">
            <PropertyName>nom_com</PropertyName>
            <Literal>Les Angles</Literal>
        </PropertyIsEqualTo>
        <PropertyIsEqualTo>
            <PropertyName>section</PropertyName>
            <Literal>AH</Literal>
        </PropertyIsEqualTo>
        <PropertyIsEqualTo>
            <PropertyName>numero</PropertyName>
            <Literal>0041</Literal>
        </PropertyIsEqualTo>
    </And>
</Filter>)