1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?xml version="1.0" encoding="UTF-8"?>
<wfs:Transaction xmlns:wfs="http://www.opengis.net/wfs"
xmlns:tows="http://www.tinyows.org/"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:gml="http://www.opengis.net/gml"
xmlns:ogc="http://www.opengis.net/ogc"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.tinyows.org/ http://127.0.0.1/cgi-bin/tinyows?service=wfs&version=1.1.0&request=describefeaturetype&typename=tows:world"
service="WFS"
version="1.1.0">
<wfs:Insert>
<tows:world>
<tows:name>-1234</tows:name>
<tows:geom>
<gml:MultiPolygon srsName="urn:ogc:def:crs:EPSG::4326">
<gml:polygonMember>
<gml:Polygon>
<gml:outerBoundaryIs>
<gml:LinearRing>
<gml:coordinates>49,2 50,2 50,3 49,2</gml:coordinates>
</gml:LinearRing>
</gml:outerBoundaryIs>
</gml:Polygon>
</gml:polygonMember>
</gml:MultiPolygon>
</tows:geom>
</tows:world>
</wfs:Insert>
</wfs:Transaction>
|