Bạn có thể đặt tham số resultType thành "lần truy cập" và bạn sẽ nhận được số lượng tính năng trong truy vấn tương tự như hàm Count () trong SQL.
Ví dụ nhận yêu cầu HTTP:
http://localhost:8080/geoserver/wfs?request=GetFeature&typeName=topp:states&version=1.1.0&resultType=hits
Ví dụ yêu cầu bài viết HTTP với một bộ lọc:
<wfs:GetFeature service="WFS" version="1.1.0"
resultType="hits"
xmlns:topp="http://www.openplans.org/topp"
xmlns:wfs="http://www.opengis.net/wfs"
xmlns:ogc="http://www.opengis.net/ogc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/wfs
http://schemas.opengis.net/wfs/1.0.0/WFS-basic.xsd">
<wfs:Query typeName="topp:states">
<ogc:Filter>
<ogc:FeatureId fid="states.3"/>
</ogc:Filter>
</wfs:Query>
</wfs:GetFeature>