Data deletion
To delete records 1 and 2 from table TEST_GEOM_POINT Send POST on URI:
            
    ?SERVICE=WFS&VERSION=1.0.0&SRSNAME=EPSG:3003&<Transaction xmlns="http://www.opengis.net/wfs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0.0" service="WFS" xmlns:p5_default_db="https://biuro.biall-net.pl/wfs/default_db" xsi:schemaLocation="https://biuro.biall-net.pl/wfs/default_db https://biuro.biall-net.pl/dev-pl/se-master/wfs-qgis.php/default_db/?SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=p5_default_db:TEST_GEOM_POINT&SRSNAME=EPSG:4326" xmlns:gml="http://www.opengis.net/gml">
    <Delete xmlns="http://www.opengis.net/wfs" typeName="p5_default_db:TEST_GEOM_POINT">
        <Filter xmlns="http://www.opengis.net/ogc">
            <FeatureId xmlns="http://www.opengis.net/ogc" fid="TEST_GEOM_POINT.2" />
            <FeatureId xmlns="http://www.opengis.net/ogc" fid="TEST_GEOM_POINT.1" />
        </Filter>
    </Delete>
</Transaction>Result of
      operation:
   <?xml version="1.0" encoding="UTF-8"?>
    <wfs:WFS_TransactionResponse version="1.0.0"
        xmlns:wfs="http://www.opengis.net/wfs"
        xmlns:ogc="http://www.opengis.net/ogc"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <wfs:InsertResult>
            <ogc:FeatureId fid="TEST_PERMS.40" xmlns:ogc="http://www.opengis.net/ogc"/>
            <ogc:FeatureId fid="TEST_PERMS.41" xmlns:ogc="http://www.opengis.net/ogc"/>
            <!-- w takiej samej kolejności jak wysłano -->
        </wfs:InsertResult>
        <wfs:TransactionResult>
            <wfs:Status>
                <wfs:SUCCESS/>
            </wfs:Status>
        </wfs:TransactionResult>
    </wfs:WFS_TransactionResponse>