The WFS-NG plug-in ignores "mapserver" as a WFS strategy.
Map params = new HashMap(); params.put("WFSDataStoreFactory:GET_CAPABILITIES_URL", "http://localhost:8282/geoserver/wfs?service=wfs&version=1.1.0&request=getcapabilities"); params.put("WFSDataStoreFactory:WFS_STRATEGY", "mapserver");
The following method needs to be modified: org.geotools.data.wfs.internal.WFSClient.determineCorrectStrategy()
Add else if (override.equalsIgnoreCase("mapserver")) { strategy = new MapServerWFSStrategy(); }
to the !auto block.
|