The Web Feature Service (WFS) pagination in ArcGIS GIS Server 10.5 Map Service does not return all results for a query when the Startindex parameter is used with Count.
上次发布: August 15, 2018ArcGIS GIS Server
漏洞 ID 编号
BUG-000113614
已提交
April 30, 2018
上次修改时间
October 11, 2024
适用范围
ArcGIS GIS Server
找到的版本
10.5
操作系统
Windows OS
操作系统版本
2012 R2
状态
Known Limit
经开发团队审核,已确定此问题与不受 Esri 控制的软件的已知限制有关。 问题的“其他信息”部分可能包含进一步说明。
附加信息
Known Limit. Index values in computers start at 0. This is common practice in programming. It is defined in the OGC Specification for WFS services found here that the first value is at startindex=0.
http://www.opengeospatial.org/standards/wfs
The first value is at index position 0.
The second value is at index position 1.
..,
The 100th value is at index position 99.
解决办法
Adjust the Count value to trick the Server into getting the desired value. For example, if the desired result is 100 features starting index from 100, the query would be StartIndex=100&Count=199. This results in 99+1 = 100 features.