Skip to main content
mattmakesmaps

WFS!

Wow, i actually have a working WFS server now. I was able to successfully use QGIS to call upon the same mapfile using both  'WMS' and 'WFS' service types. As you can see in the image below, a static baselayer, 'COUNTY' (actually a dissolved shp designed to show the physical outline of Washington State) is displayed as WMS layer, as well as WFS layer, 'NATPARK', capable of actually identifiying features.

[caption id="attachment_97" align="alignnone" width="300" caption="QGIS Screenshot: Selected feature in yellow, Identified feature in pinkish-outline."]wfs_identify[/caption]

I'm amazed at the ability of Mapserver to take a shapefile, turn it into GML, and send it almost magically to ANY program that can interpret it.  I'm finally wrapping my noggin around the whole concept of XML, and just how powerful it can be.

So what were my primary issues? Well, it took me about an hour to realize that I was running my, 'DescribeFeatureType' request on the mapfile entitled 'WA_WGS84.map' rather than 'WA_WFS_WGS84.map'. So that was my own error. Then I realized that while the KEY field for each of these shapefiles in ArcGIS is simply, 'FID', this **cannot **be used for the 'gml_featureid' metadata requirement in the mapfile. Another primary key such as, 'PARKID' must instead be used, and the GML file will actually create its own, 'FID' based on this.

Some other key lessons from today:

What's next? Wrap an openlayers display around this with selection and identify capabilities.