All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ogc.wfs.2.0.examples.GetPropertyValue.Example_07_Req.xml Maven / Gradle / Ivy

<?xml version="1.0" ?>
<!--
Q. Get the Fred Smith's age.
-->
<GetPropertyValue
   service="WFS"
   version="2.0.2"
   valueReference="myns:age"
   outputFormat="application/xml; subtype=gml/3.2"
   xmlns="http://www.opengis.net/wfs/2.0"
   xmlns:fes="http://www.opengis.net/fes/2.0"
   xmlns:myns="http://www.myserver.com/myns"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.opengis.net/wfs/2.0 http://schemas.opengis.net/wfs/2.0/wfs.xsd
                       http://www.someserver.example.com/myns ./myns.xsd">
   <Query typeNames="myns:Person">
      <fes:Filter>
         <fes:And>
            <fes:PropertyIsEqualTo>
               <fes:ValueReference>myns:firstName</fes:ValueReference>
               <fes:Literal>Mary</fes:Literal>
            </fes:PropertyIsEqualTo>
            <fes:PropertyIsEqualTo>
               <fes:ValueReference>myns:lastName</fes:ValueReference>
               <fes:Literal>Smith</fes:Literal>
            </fes:PropertyIsEqualTo>
         </fes:And>
      </fes:Filter>
   </Query>
</GetPropertyValue>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy