响应说明

执行 ListStoredQueries 操作后,返回的是 XML 格式的响应文档,文档中列出了 WFS 2.0.0 服务支持的存储查询列表。SuperMap iServer 只提供了 GetFeatureById 存储查询方式。ListStoredQueriesResponse 元素为响应文档的根元素,可以包含多个 StoredQuery 元素,每个 StoredQuery 元素表示一种存储查询方式,存储查询方式由 id 属性指定。StoredQuery 元素可包含一个或多个 ReturnFeatureType 元素和 Title 元素。使用 Title 元素为存储查询方式分配一个可读的的名字,多个 Title 元素的 xml:lang 属性为不同值,xml:lang 属性默认值为"en"。ReturnFeatureType 元素用于指定通过 GetFeatureById 存储查询方式得到的要素类型列表。

响应示例

请求示例 的响应结果如下:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<wfs:ListStoredQueriesResponse xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:wfs="http://www.opengis.net/wfs/2.0" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:gml="http://www.opengis.net/gml/3.2">

    <wfs:StoredQuery id="urn:ogc:def:query:OGC-WFS::GetFeatureById">

        <wfs:Title xml:lang="en">urn:ogc:def:query:OGC-WFS::GetFeatureById</wfs:Title>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:Ocean</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:OceanBoundary</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:ContinentBoundary</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:CountryBoundary</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:Lakes</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:Grids</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:OceanLabelP_C</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:OceanLabelP_E</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:Rivers</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:Countries</wfs:ReturnFeatureType>

        <wfs:ReturnFeatureType xmlns:World="http://www.supermap.com.cn/World">

World:Capitals</wfs:ReturnFeatureType>

    </wfs:StoredQuery>

</wfs:ListStoredQueriesResponse>