WFS_getFeature-2.0.xml 836 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This example demonstrates a WFS 2.0 GetFeature POST request.
  4. This filter selects a single feature with id "bugsites.3".
  5. See also:
  6. WFS Standard: http://www.opengeospatial.org/standards/wfs
  7. Filter Encoding Standard: http://www.opengeospatial.org/standards/filter
  8. -->
  9. <wfs:GetFeature service="WFS" version="2.0.0"
  10. xmlns:wfs="http://www.opengis.net/wfs/2.0" xmlns:fes="http://www.opengis.net/fes/2.0"
  11. xmlns:sf="http://www.openplans.org/spearfish" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  12. xsi:schemaLocation="http://www.opengis.net/wfs/2.0 http://schemas.opengis.net/wfs/2.0/wfs.xsd">
  13. <wfs:Query typeNames="sf:bugsites">
  14. <fes:Filter>
  15. <fes:ResourceId rid="bugsites.3"/>
  16. </fes:Filter>
  17. </wfs:Query>
  18. </wfs:GetFeature>