Re: [Geoserver-users] GeoServer 2.15 Spring vulnerability

2022-03-24 Thread Jody Garnett
Dominique:

You have our security policy
, we only
mentioned a fix when all active branches are patched. And we do not discuss
security vulnerabilities in public ;)

You are correct that many of the libraries and frameworks used encounter
vulnerabilities, and not every vulnerability is exploitable from
GeoServer.  If you wish to discuss this library upgrade, or any other
security issue:

   - Attend one of the bi-weekly meetings
   - Volunteer to help fix security issues
   - Check out our commercial support providers (who take part in managing
   these issues on behalf of their customers).


General advice (that does not answer your question) - I would feel much
more comfortable if you update you GeoServer to a supported branch. Indeed
we mention this every state of GeoServer talk!
--
Jody Garnett


On Mar 24, 2022 at 2:39:18 PM, "Bessette-Halsema, Dominique E via
Geoserver-users"  wrote:

> Hello
>
>
>
> I saw that we fixed the spring vulnerability issue in GeoServer 2.17.  Was
> GeoServer 2.15 even vulnerable to this attack?  We have some environments
> with 2.15 and need to know if they require a patch or upgrade.
>
>
>
> https://osgeo-org.atlassian.net/browse/GEOS-9477
>
>
>
>
>
>
>
> Dominique Bessette
>
> Senior Software Engineer
>
>
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] NetCDF - error messages

2022-03-24 Thread Frederic Leclercq

Hi all,

As I'm currently testing multiple NetCDF files in GeoServer,  I notice 
that there is quite a bit of randomness of success doing that - at least 
it looks "random". Therefore - is there any way to detect what the exact 
problem is? Current error messages/logs are not that clear to me:


"Failed to create reader from file:coverages/testfolder/fred_new.nc and 
hints Hints: EXECUTOR_SERVICE = 
java.util.concurrent.ThreadPoolExecutor@1827b3a3[Running, pool size = 0, 
active threads = 0, queued tasks = 0, completed tasks = 0] REPOSITORY = 
org.geoserver.catalog.CatalogRepository@7caef354 System defaults: 
COMPARISON_TOLERANCE = 1.0E-8 FORCE_AXIS_ORDER_HONORING = http 
FEATURE_FACTORY = 
org.geotools.feature.LenientFeatureFactoryImpl@33ab2a79 
FORCE_LONGITUDE_FIRST_AXIS_ORDER = true FILTER_FACTORY = 
FilterFactoryImpl GRID_COVERAGE_FACTORY = GridCoverageFactory 
TILE_ENCODING = null STYLE_FACTORY = StyleFactoryImpl 
LENIENT_DATUM_SHIFT = true"


Before I dive into the source code, there might be an easier way to 
detect the issue here?


Thanks!
Fred.___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [EXTERNAL] - RE: WPS gs:Clip Topology Exception

2022-03-24 Thread Oscar Wu
Hi Dominique,

Thanks again for the help.

I check the CRS of my clipping polygon using geometry.getSRID() it returned 0. 
Knowing this I added the SRID of 3005 using geometry.setSRID(3005) in my custom 
WPS to have it match with the other input. However, I'm still seeing the same 
Topology Exception.

I feel like this might not be related to coordinate systems though. I have 
other data sources that works fine with the same clipping geometry even without 
assigning the CRS.

One other thing I tried was to use the TopologyPreservingSimlifier and the 
DouglasPeuckerSimplifier. I thought the data source might contain complex 
polygons which lead to topology mismatch. Unfortunately, the same error was 
still here.

I'm wondering if you have more suggestions? Thanks!

Regards,

Oscar

From: Bessette-Halsema, Dominique E 
Sent: March 24, 2022 11:45 AM
To: Oscar Wu ; geoserver-users@lists.sourceforge.net 

Subject: RE: [EXTERNAL] - RE: WPS gs:Clip Topology Exception


There are several ways to set the CRS in the Geometry, but this probably wont 
fix your problem. I just worry that the code is setting your Geometry to the 
default EPSG and that’s why it cant figure it out.  Also there are some 
Geometry limits, like crossing the antemeridian.  If you are crossing the 
antemeridian you can try shifting your polygon from 180, -180 to 0, 360 or 
break it into 2 pieces.



You can do an EPSG check:  geometry.getSRID().



Example 1: create an Envelope and then create the Geometry

 Envelope impactEnvelope = new ReferencedEnvelope(newMinX, maxx, 
miny, maxy,

   CRS.decode("EPSG:4326"));

 Geometry myGeom = JTS.toGeometry(impactEnvelope).getEnvelope();;





example 2: use mathTransform

 MathTransform transform = CRS.findMathTransform(sourceCRS, 
targetCRS, false);

 Geometry targetGeometry = JTS.transform( myGeom, transform);



Hope this helps!



Dominique Bessette

Senior Software Engineer




From: Oscar Wu 
Sent: Thursday, March 24, 2022 11:23 AM
To: Bessette-Halsema, Dominique E ; 
geoserver-users@lists.sourceforge.net
Subject: Re: [EXTERNAL] - RE: WPS gs:Clip Topology Exception





 [External: Use caution with links & attachments]



Hi Dominique,



Thank you very much for the suggestion.



I tried to explicitly define the EPSG in the getFeature request by adding 
srsName=EPSG:3005 to the url. The clipping geometry has no place to add SRS as 
it is only a geometry not a feature. However, I have made sure the coordinates 
in the clipping geometry are also generated under EPSG:3005. That being said, 
it unfortunately did not solve the issue.



Is there anything else I can try?



Thanks!



Oscar



From: Bessette-Halsema, Dominique E 
mailto:dominique.besse...@gdit.com>>
Sent: March 24, 2022 9:30 AM
To: Oscar Wu mailto:oscar...@crmltd.ca>>; 
geoserver-users@lists.sourceforge.net
 
mailto:geoserver-users@lists.sourceforge.net>>
Subject: [EXTERNAL] - RE: WPS gs:Clip Topology Exception



You may want to try specifying your EPSG in your Polygon and getFeature request



Dominique Bessette

Senior Software Engineer



From: Oscar Wu mailto:oscar...@crmltd.ca>>
Sent: Wednesday, March 23, 2022 1:02 PM
To: 
geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] WPS gs:Clip Topology Exception





 [External: Use caution with links & attachments]



Hi everyone,



First time posting here, thank you for your understanding if I am not 
explaining my situation well.



I've been trying to use the built-in gs:Clip to extract some public layers 
based on a polygon defined by coordinates. The process seemed to work well with 
a couple of layers until I tried it with one particular layer.



Here's the xml in the POST request:

http://www.w3.org/2001/XMLSchema-instance"
 
xmlns="http://www.opengis.net/wps/1.0.0";
 
xmlns:wfs="http://www.opengis.net/wfs"
 
xmlns:wps="http://www.opengis.net/wps/1.0.0"
 
xmlns:ows="http://www.opengis.net/ows/1.1"
 
xmlns:gml="http://www.opengis.net/gml

[Geoserver-users] GeoServer 2.15 Spring vulnerability

2022-03-24 Thread Bessette-Halsema, Dominique E via Geoserver-users
Hello

I saw that we fixed the spring vulnerability issue in GeoServer 2.17.  Was 
GeoServer 2.15 even vulnerable to this attack?  We have some environments with 
2.15 and need to know if they require a patch or upgrade.

https://osgeo-org.atlassian.net/browse/GEOS-9477



Dominique Bessette
Senior Software Engineer


___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [EXTERNAL] - RE: WPS gs:Clip Topology Exception

2022-03-24 Thread Bessette-Halsema, Dominique E via Geoserver-users
There are several ways to set the CRS in the Geometry, but this probably wont 
fix your problem. I just worry that the code is setting your Geometry to the 
default EPSG and that's why it cant figure it out.  Also there are some 
Geometry limits, like crossing the antemeridian.  If you are crossing the 
antemeridian you can try shifting your polygon from 180, -180 to 0, 360 or 
break it into 2 pieces.

You can do an EPSG check:  geometry.getSRID().

Example 1: create an Envelope and then create the Geometry
 Envelope impactEnvelope = new ReferencedEnvelope(newMinX, maxx, 
miny, maxy,
   CRS.decode("EPSG:4326"));
 Geometry myGeom = JTS.toGeometry(impactEnvelope).getEnvelope();;


example 2: use mathTransform
 MathTransform transform = CRS.findMathTransform(sourceCRS, 
targetCRS, false);
 Geometry targetGeometry = JTS.transform( myGeom, transform);

Hope this helps!

Dominique Bessette
Senior Software Engineer


From: Oscar Wu 
Sent: Thursday, March 24, 2022 11:23 AM
To: Bessette-Halsema, Dominique E ; 
geoserver-users@lists.sourceforge.net
Subject: Re: [EXTERNAL] - RE: WPS gs:Clip Topology Exception


 [External: Use caution with links & attachments]

Hi Dominique,

Thank you very much for the suggestion.

I tried to explicitly define the EPSG in the getFeature request by adding 
srsName=EPSG:3005 to the url. The clipping geometry has no place to add SRS as 
it is only a geometry not a feature. However, I have made sure the coordinates 
in the clipping geometry are also generated under EPSG:3005. That being said, 
it unfortunately did not solve the issue.

Is there anything else I can try?

Thanks!

Oscar

From: Bessette-Halsema, Dominique E 
mailto:dominique.besse...@gdit.com>>
Sent: March 24, 2022 9:30 AM
To: Oscar Wu mailto:oscar...@crmltd.ca>>; 
geoserver-users@lists.sourceforge.net
 
mailto:geoserver-users@lists.sourceforge.net>>
Subject: [EXTERNAL] - RE: WPS gs:Clip Topology Exception


You may want to try specifying your EPSG in your Polygon and getFeature request



Dominique Bessette

Senior Software Engineer



From: Oscar Wu mailto:oscar...@crmltd.ca>>
Sent: Wednesday, March 23, 2022 1:02 PM
To: 
geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] WPS gs:Clip Topology Exception





 [External: Use caution with links & attachments]



Hi everyone,



First time posting here, thank you for your understanding if I am not 
explaining my situation well.



I've been trying to use the built-in gs:Clip to extract some public layers 
based on a polygon defined by coordinates. The process seemed to work well with 
a couple of layers until I tried it with one particular layer.



Here's the xml in the POST request:

http://www.w3.org/2001/XMLSchema-instance"
 
xmlns="http://www.opengis.net/wps/1.0.0";
 
xmlns:wfs="http://www.opengis.net/wfs"
 
xmlns:wps="http://www.opengis.net/wps/1.0.0"
 
xmlns:ows="http://www.opengis.net/ows/1.1"
 
xmlns:gml="http://www.opengis.net/gml"
 
xmlns:ogc="http://www.opengis.net/ogc"
 
xmlns:wcs="http://www.opengis.net/wcs/1.1.1"
 
xmlns:xlink="http://www.w3.org/1999/xlink"
 xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 
http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd";>

  gs:Clip

  



  features

   

Re: [Geoserver-users] [EXTERNAL] - RE: WPS gs:Clip Topology Exception

2022-03-24 Thread Oscar Wu
Hi Dominique,

Thank you very much for the suggestion.

I tried to explicitly define the EPSG in the getFeature request by adding 
srsName=EPSG:3005 to the url. The clipping geometry has no place to add SRS as 
it is only a geometry not a feature. However, I have made sure the coordinates 
in the clipping geometry are also generated under EPSG:3005. That being said, 
it unfortunately did not solve the issue.

Is there anything else I can try?

Thanks!

Oscar

From: Bessette-Halsema, Dominique E 
Sent: March 24, 2022 9:30 AM
To: Oscar Wu ; geoserver-users@lists.sourceforge.net 

Subject: [EXTERNAL] - RE: WPS gs:Clip Topology Exception


You may want to try specifying your EPSG in your Polygon and getFeature request



Dominique Bessette

Senior Software Engineer




From: Oscar Wu 
Sent: Wednesday, March 23, 2022 1:02 PM
To: geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] WPS gs:Clip Topology Exception





 [External: Use caution with links & attachments]



Hi everyone,



First time posting here, thank you for your understanding if I am not 
explaining my situation well.



I've been trying to use the built-in gs:Clip to extract some public layers 
based on a polygon defined by coordinates. The process seemed to work well with 
a couple of layers until I tried it with one particular layer.



Here's the xml in the POST request:

http://www.w3.org/2001/XMLSchema-instance"; 
xmlns="http://www.opengis.net/wps/1.0.0";
 xmlns:wfs="http://www.opengis.net/wfs"; 
xmlns:wps="http://www.opengis.net/wps/1.0.0"; 
xmlns:ows="http://www.opengis.net/ows/1.1"; 
xmlns:gml="http://www.opengis.net/gml"; xmlns:ogc="http://www.opengis.net/ogc"; 
xmlns:wcs="http://www.opengis.net/wcs/1.1.1"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; 
xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 
http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd";>

  gs:Clip

  



  features

  http://openmaps.gov.bc.ca/geo/pub/ows?service=WFS&version=2.0.0&request=GetFeature&typeName=WHSE_CADASTRE.PMBC_PARCEL_FABRIC_POLY_SVW&outputFormat=json&bbox=715319.3721917,1028613.368105,735025.9926936,1041407.195003";
 method="GET"/>





  clip

  



  



  

  



  result



  





In this case, a TopologyException was thrown (the stack trace is attached in 
the email):



org.locationtech.jts.geom.TopologyException: found non-noded intersection 
between LINESTRING ( 737930.4267 1033205.5095, 737925.915 1033208.5901 ) and 
LINESTRING ( 737933.8941 1033203.0284, 737930.4267 1033205.5095 ) [ 
(737930.4267, 1033205.5095, NaN) ]



I'm using Geoserver 2.20.2, GeoTools 26.2 and WPS 1.0.0.



I have searched about this issue and learned that this is caused by invalid 
geometry which was explained here:

https://locationtech.github.io/jts/jts-faq.html#D1



Then I tried to create a customized WPS that 'clean' the input either using 
buffer(0) or the GeometryFixer in JTS before sending it to the clip process but 
neither of them solved the issue.



I have exhausted my solutions to this problem and I'm wondering if anyone have 
encountered a similar issue before? May I have some suggestions about what to 
look for next?



Thank you very much!



Regards,



Oscar
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] What is GeoServer Password Encoder for password generating in other programming languages?

2022-03-24 Thread Francesco Bartoli
Hi,

I guess this line might be helpful despite it is using the native java 
libraries 
https://github.com/olivierdalang/SPCgeonode/blob/master/_service_geoserver/docker-entrypoint.sh#L59
 
.
 However, you might choice to call it as a container CLI from a GeoServer 
docker image in a python environment. It should work.

Hope it helps

Regards,
Francesco

> Il giorno 24 mar 2022, alle ore 17:03, Navid taheri  
> ha scritto:
> 
> Hi,
> 
> I understood I can not change (non-admin) users password via GeoServer 
> RESTful api!, but I can change users password via users.xml . Therefore, I am 
> going to know,
> 
> How I can do that?
> 
> could you please inform me about GeoServer password encoder and its 
> parameters (such as round time number), I need for generate correct password 
> in programming languages such as python3 or nodejs?
> 
> 
> 
> 
> ___
> Geoserver-users mailing list
> 
> Please make sure you read the following two resources before posting to this 
> list:
> - Earning your support instead of buying it, but Ian Turton: 
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines: 
> http://geoserver.org/comm/userlist-guidelines.html
> 
> If you want to request a feature or an improvement, also see this: 
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
> 
> 
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users

___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] WPS gs:Clip Topology Exception

2022-03-24 Thread Bessette-Halsema, Dominique E via Geoserver-users
You may want to try specifying your EPSG in your Polygon and getFeature request

Dominique Bessette
Senior Software Engineer


From: Oscar Wu 
Sent: Wednesday, March 23, 2022 1:02 PM
To: geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] WPS gs:Clip Topology Exception


 [External: Use caution with links & attachments]

Hi everyone,

First time posting here, thank you for your understanding if I am not 
explaining my situation well.

I've been trying to use the built-in gs:Clip to extract some public layers 
based on a polygon defined by coordinates. The process seemed to work well with 
a couple of layers until I tried it with one particular layer.

Here's the xml in the POST request:

http://www.w3.org/2001/XMLSchema-instance"; 
xmlns="http://www.opengis.net/wps/1.0.0";
 xmlns:wfs="http://www.opengis.net/wfs"; 
xmlns:wps="http://www.opengis.net/wps/1.0.0"; 
xmlns:ows="http://www.opengis.net/ows/1.1"; 
xmlns:gml="http://www.opengis.net/gml"; xmlns:ogc="http://www.opengis.net/ogc"; 
xmlns:wcs="http://www.opengis.net/wcs/1.1.1"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; 
xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 
http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd";>

  gs:Clip

  



  features

  http://openmaps.gov.bc.ca/geo/pub/ows?service=WFS&version=2.0.0&request=GetFeature&typeName=WHSE_CADASTRE.PMBC_PARCEL_FABRIC_POLY_SVW&outputFormat=json&bbox=715319.3721917,1028613.368105,735025.9926936,1041407.195003";
 method="GET"/>





  clip

  



  



  

  



  result



  



In this case, a TopologyException was thrown (the stack trace is attached in 
the email):

org.locationtech.jts.geom.TopologyException: found non-noded intersection 
between LINESTRING ( 737930.4267 1033205.5095, 737925.915 1033208.5901 ) and 
LINESTRING ( 737933.8941 1033203.0284, 737930.4267 1033205.5095 ) [ 
(737930.4267, 1033205.5095, NaN) ]

I'm using Geoserver 2.20.2, GeoTools 26.2 and WPS 1.0.0.

I have searched about this issue and learned that this is caused by invalid 
geometry which was explained here:
https://locationtech.github.io/jts/jts-faq.html#D1

Then I tried to create a customized WPS that 'clean' the input either using 
buffer(0) or the GeometryFixer in JTS before sending it to the clip process but 
neither of them solved the issue.

I have exhausted my solutions to this problem and I'm wondering if anyone have 
encountered a similar issue before? May I have some suggestions about what to 
look for next?

Thank you very much!

Regards,

Oscar
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] What is GeoServer Password Encoder for password generating in other programming languages?

2022-03-24 Thread Navid taheri

Hi,

I understood I can not change (non-admin) users password via GeoServer 
RESTful api!, but I can change users password via users.xml . Therefore, 
I am going to know,


How I can do that?

could you please inform me about GeoServer password encoder and its 
parameters (such as round time number), I need for generate correct 
password in programming languages such as python3 or nodejs?





___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Automating layer publishing via API

2022-03-24 Thread Jody Garnett
To get a working example, configure the layer with the CQL filter you want,
and then use the REST API to see what was written out.

You are welcome to contribute to the documentation once you have that
example.

Jody

On Wed, Mar 23, 2022 at 10:55 PM Prem Kumar  wrote:

> Hi Team,
>
> I have been trying to automate publishing the layers via geoserver rest
> api but finding difficulties in fully customise it in my way.
>
> Essentially, I need to
>
> 1. Create workspace- no issues
> 2. Create Postgres datastore - found issues, database type not identified.
> 3. Publish multiple layers from a single postgres table with different CQL
> filter. - looking for documentation or working examples.
>
> It would be really helpful if someone can help me pointing to good
> examples or documentation, especially format of REST requests.
>
> Thank you in advance.
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
-- 
--
Jody Garnett
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users