The result of a GetFeature request vary depending on the WFS version you use, when you add an ECQL spatial filter (CONTAINS, INTERSECTS...).
Case 1: WFS V1.0.0 -> RETURN RESULTS http://localhost:6969/geoserver/KUWAIT/ows?service=WFS&request=GetFeature&version=1.0.0&OutputFormat=json&PropertyName=&TypeNames=KUWAIT:KWT_adm1&CQL_FILTER=CONTAINS(the_geom,POINT(48 29))
Case 2: WFS V1.1.0 and V2.0.0 -> NO RESULTS http://localhost:6969/geoserver/KUWAIT/ows?service=WFS&request=GetFeature&version=2.0.0&OutputFormat=json&PropertyName=&TypeNames=KUWAIT:KWT_adm1&CQL_FILTER=CONTAINS(the_geom,POINT(48 29))
However, for this last case it will work if you change the order of the coordinates: POINT(29 48)
|