I have tried for a while to find the answer to this question, but no
luck unfortunately.

I have a WFS request running from my code:


var protocol = new OpenLayers.Protocol.WFS({
    url: 'http://localhost/wfs',
    version: "1.0.0",
    featureType: "lib_matrikkel_flate",
    featureNS: "",
    srsName: "EPSG:32633"
    //,format: new OpenLayers.Format.GeoJSON()
});

var proxyProtocol = new GeoExt.data.ProtocolProxy({
    protocol: protocol
});

var store = new GeoExt.data.FeatureStore({
    layer: propertyBorder,
    proxy: proxyProtocol,
    autoLoad: true
});


This runs a POST request. I would like it to do a GET request instead.
Setting method: "GET" on the ProtocolProxy does not work. How can I
change from a POST request to a GET request?

Espen
_______________________________________________
Users mailing list
Users@geoext.org
http://www.geoext.org/cgi-bin/mailman/listinfo/users

Reply via email to