ListStoredQueries Response |
After executing the ListStoredQueries operation, the response document is returned in XML format with WFS listed in the document List of stored queries supported by the 2.0.0 service. SuperMap iServer only provides the GetFeatureById storage query method. ListStoredQueriesResponse The element is the root element of the response document and can contain multiple StoredQuery elements. Each StoredQuery element represents a stored query method, which is defined by id attribute specifies. The Stored Query element can contain one or more ReturnFeatureType elements and a Title element. Use Title The element assigns a readable name to the stored query method. Multiple Title elements have different values for the xml:lang attribute. The default value of the XML: Lang attribute is "en". ReturnFeatureType element is used to specify the list of feature types from the GetFeatureById store query.
The response result of the request example is as follows:
<?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="https://www.supermap.com.cn/World">World:Ocean</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:OceanBoundary</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:ContinentBoundary</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:CountryBoundary</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:Lakes</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:Grids</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:OceanLabelP_C</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:OceanLabelP_E</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:Rivers</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:Countries</wfs:ReturnFeatureType>
<wfs:ReturnFeatureType xmlns:World="https://www.supermap.com.cn/World">World:Capitals</wfs:ReturnFeatureType>
</wfs:StoredQuery>
</wfs:ListStoredQueriesResponse>