Project

General

Profile

1
 <!--       YOU PROBABLY DO NOT WANT TO RUN THIS QUERY SINCE 
2
       IT WILL MODIFY YOUR SOURCE DATA FILES
3

    
4
      This will update the type field for the tasmania_roads dataset.
5
      
6
   -->
7

    
8

    
9
<wfs:Transaction service="WFS" version="1.0.0"
10
  xmlns:topp="http://www.openplans.org/topp"
11
  xmlns:ogc="http://www.opengis.net/ogc"
12
  xmlns:wfs="http://www.opengis.net/wfs">
13
  <wfs:Update typeName="topp:tasmania_roads">
14
    <wfs:Property>
15
      <wfs:Name>TYPE</wfs:Name>
16
      <wfs:Value>street</wfs:Value>
17
    </wfs:Property>
18
    <ogc:Filter>
19
      <ogc:FeatureId fid="tasmania_roads.1"/>
20
    </ogc:Filter>
21
  </wfs:Update>
22
</wfs:Transaction>
(10-10/20)