I may be misunderstanding the GeoServer documents, but when accessing a GeoServer 2.2 WFS 1.1 layer, should I be able to reproject to an arbitrary SRS via the SRSNAME parameter? I'm generating a bounding box from the location of a click on a WMS map where I know there is a feature. The map is projected into UTM zone 15 (EPSG:32615). So I generate the following URL:
This query returns 0 features, and I don't know why. It's essentially the same query I was using for another layer, also served from GeoServer, that was sourced from a shapefile in EPSG:32615, where the query worked. So here's what's different about this layer:
- I'm using PostGIS for a backend on the new layer; the old one was a shapefile
- The shapefile was in EPSG:32615; the PostGIS table is in EPSG:4326
- The PostGIS table is using the "geography" data type rather than the "geometry" data type, if that's relevant.
Any ideas?