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 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>)