Most tutorials on WFS transaction uses a schema and geom attributes in WFS request like this
var wfs_layer = new OpenLayers.Layer.Vector("Editable Features", {
strategies: [new OpenLayers.Strategy.BBOX(), saveStrategy],
//projection: new OpenLayers.Projection("EPSG:26910"),
protocol: new OpenLayers.Protocol.WFS({
version: "1.1.0",
url: "http://localhost/geoserver/wfs",
featureNS : "http://www.opengeospatial.net/cite",
featureType: "wfst_test",
**geometryName: "the_geom",**
**schema: "http://localhost/geoserver/wfs/DescribeFeatureType?version=1.1.0&;typename=cite:wfst_test"**
})
});
can we omit this or is it compulsory to include them?
