Re: [gdal-dev] WFS Vector Layer Improvement

2021-08-30 Thread aharon david
Thanks! It is very helpful. Aharon David. ‫בתאריך יום ב׳, 30 באוג׳ 2021 ב-12:15 מאת ‪Robert Coup‬‏ <‪ robert.c...@koordinates.com‬‏>:‬ > FYI, the way it works with GeoServer is to use the URL paths: > > /geoserver/wfs?service=WFS&request=GetCapabilities&version=2.0.0 → > results for all workspac

Re: [gdal-dev] WFS Vector Layer Improvement

2021-08-30 Thread Robert Coup
FYI, the way it works with GeoServer is to use the URL paths: /geoserver/wfs?service=WFS&request=GetCapabilities&version=2.0.0 → results for all workspaces & datasets /geoserver/myworkspace/wfs?service=WFS&request=GetCapabilities&version=2.0.0 → results for all datasets in a single workspace /geos

Re: [gdal-dev] WFS Vector Layer Improvement

2021-08-29 Thread Even Rouault
(Adding back the list again, please "Answer all") Le 29/08/2021 à 19:59, aharon david a écrit : Ok, you right. But what about to add it as an extention? Why to remove it by force? To avoid emitting confusing requests. As far as i can see in the code, other arbitary extenetions are permitted, w

Re: [gdal-dev] WFS Vector Layer Improvement

2021-08-29 Thread Even Rouault
(Adding back the list) you can see in the following URL that typename\typenames are exist in the WFS2 schema examples: http://schemas.opengis.net/wfs/2.0/examples/KVP/kvp.txt In those examples, Typename is just for GetFeature and Descri

Re: [gdal-dev] WFS Vector Layer Improvement

2021-08-29 Thread Even Rouault
David, Per the standard (at least I checked in WFS 2.0), typename/typenames is not a standardized query parameter for GetCapabilities. Are you referring to some servers that would accept it as an extension ? Even Le 29/08/2021 à 08:06, aharon david a écrit : Hi, I want to suggest an  impro

Re: [gdal-dev] WFS Vector Layer Improvement

2021-08-28 Thread Brad Hards
On Sunday, 29 August 2021 4:06:33 PM AEST aharon david wrote: > I want to suggest an improvement in WFS Vector Layer. You can make Pull Requests at https://github.com/OSGeo/gdal Please check the CONTRIBUTING.md file in that repository (or your checkout) first. Brad _

[gdal-dev] WFS Vector Layer Improvement

2021-08-28 Thread aharon david
Hi, I want to suggest an improvement in WFS Vector Layer. my suggestion is just to remove the lines 839 and 840: osURL = CPLURLAddKVP(osURL, "TYPENAME", nullptr); osURL = CPLURLAddKVP(osURL, "TYPENAMES", nullptr); in file: "gdal-3.3.1\ogr\ogrsf_frmts\wfs\ogrwfsdatasource.cpp". The big advan