Project

General

Profile

1
<!--
2
      YOU PROBABLY DO NOT WANT TO RUN THIS QUERY SINCE 
3
       IT WILL MODIFY YOUR SOURCE DATA FILES
4
       
5
       It will add a simple line to the tasmania_roads dataset.
6
       
7
  -->
8
<wfs:Transaction service="WFS" version="1.0.0"
9
  xmlns:wfs="http://www.opengis.net/wfs"
10
  xmlns:topp="http://www.openplans.org/topp"
11
  xmlns:gml="http://www.opengis.net/gml"
12
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13
  xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/WFS-transaction.xsd http://www.openplans.org/topp http://localhost:8080/geoserver/wfs/DescribeFeatureType?typename=topp:tasmania_roads">
14
  <wfs:Insert>
15
    <topp:tasmania_roads>
16
      <topp:the_geom>
17
        <gml:MultiLineString srsName="http://www.opengis.net/gml/srs/epsg.xml#27354">
18
          <gml:lineStringMember>
19
            <gml:LineString>
20
              <gml:coordinates decimal="." cs="," ts=" ">
21
494475.71056415,5433016.8189323 494982.70115662,5435041.95096618
22
              </gml:coordinates>
23
            </gml:LineString>
24
          </gml:lineStringMember>
25
        </gml:MultiLineString>
26
      </topp:the_geom>
27
      <topp:TYPE>alley</topp:TYPE>
28
    </topp:tasmania_roads>
29
  </wfs:Insert>
30
</wfs:Transaction>
(9-9/20)