I am stuck with an issue from geoserver where my WFS-T protocol insert works
fine where as update and delete failed miserably.I have the layer "ponds"
served from a postgis table.
following is my code(almost same as that from openlayers example wfs-t) 

var featureNS_url = 'http://www.opengeospatial.net/kfri';
                        var feature_type  ='ponds';
                        var schema_url    =
'http://localhost/geoserver/wfs/DescribeFeatureType?version=1.1.0&typename=kfri:ponds'
                        
                        wfs = new OpenLayers.Layer.Vector("WFS",{
                            strategies: [new 
OpenLayers.Strategy.BBOX(),saveStrategy],
                            projection: new OpenLayers.Projection("EPSG:4326"),
                            protocol: new OpenLayers.Protocol.WFS({
                                version: "1.1.0",
                                srsName: "EPSG:4326",
                                url: "http://localhost/geoserver/wfs";,
                                featureNS : featureNS_url,
                                featureType: feature_type,
                                geometryName: "the_geom",
                                schema: schema_url
                            })
                        });
                        map.addLayers([wfs]);
My firebug throws the error on delete/update.

−

−

Could not determine geoserver request from http request
org.apache.catalina.connector.requestfac...@b53a8f



where as my insert query by wfs-t works like charm.
Any help will be deeply appreciated as i am a novice.
regards
Sumith
-- 
View this message in context: 
http://old.nabble.com/WFS-T-DELETE-UPDATE-ISSUE-tp29332139p29332139.html
Sent from the GeoServer - User mailing list archive at Nabble.com.
------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
Geoserver-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to