Hi list,<br><br>i am trying to request WFS service version 1.0.0 with GML3. My first approach:<br><br> var wfs_tasmaniaRoads = new OpenLayers.Layer.Vector("GML3, WFS 1.0.0", {<br> strategies: [new OpenLayers.Strategy.BBOX()], // only pulls the feature currently visible in the map display<br>
protocol: new OpenLayers.Protocol.WFS({<br> url: "<a href="http://giv-wps.uni-muenster.de:8080/geoserver/wfs">http://giv-wps.uni-muenster.de:8080/geoserver/wfs</a>",<br>
featureType: "tasmania_roads", // required<br> featureNS: "<a href="http://www.openplans.org/ns1">http://www.openplans.org/ns1</a>", // optional<br>
version: "1.0.0",<br> outputFormat: "GML3" <br> })<br> });<br><br>WFS version 1.1.0 (GML3) works fine,<br>
WFS version 1.0.0 and outputFormat=GML2 works fine,<br>WFS version 1.0.0 and outputFormat=GML3 does not work for me, the response seems to be ok, except for the attribute numbersOfFeatures="0" (in fact there are features inside), but the drawing ends up in unrendered features on the layer. It seems the Point features are not parsed correclty, so they dont exist in the layer.<br>
<br>Is there a way of doing this?<br><br>Greets<br><br><br>