[Geoserver-users] Can't edit user roles/groups without changing password

2020-07-01 Thread Thuser - Services
Hi List, I have a geoserver setup with custom roles. I want to be able to, as an admin user, assign users to roles. When I try to add a role to a user under the 'Users, Groups, Roles' setting in the web UI, it won't allow me to save without also changing the password of the user. Using

[Geoserver-users] REST configuration Geopackage raster

2020-07-01 Thread Nikolaus Pruzsinszky
Hi list, I am trying to add a geopackage to my geoserver instance via the REST interface, these are my lines: First I create the Coverage store: curl -v -u %login% -POST -H "Content-type: application/json" -d "{"coverageStore":{"name":"Sentinel_2","workspace":"%wsname40%"}}"

Re: [Geoserver-users] Mixing geometry transformation and rendering transformation

2020-07-01 Thread Andrea Aime
They can be used both, but the specific examples you cite won't work together: - A rendering transformation replaces the source data the style is used against, you call the SLD on top of a set of points, and, say, "heatmap" turns it into a raster (so your style must be for the raster)

[Geoserver-users] Mixing geometry transformation and rendering transformation

2020-07-01 Thread Alexandre Gacon
Hi every one, Is it possible to mix rendering transformation like PointStacker or Heatmap with geometry transformation like centroid(line) in styling? Or should I create a view computing the geometric transformation first? (My data are in a Postgis database). Regards -- Alexandre Gacon

Re: [Geoserver-users] Antialiasing Vendor parameter dead?

2020-07-01 Thread Andrea Aime
To be noted, in Ian's request the format_option is called "antialias" instead of "antialiasing" :-) Indeed, that's how it's supposed to be called (checked the code). Cheers Andrea On Wed, Jul 1, 2020 at 11:49 AM Ian Turton wrote: > I've just checked 2.17.1 and all seems fine to me. > > Full

Re: [Geoserver-users] Antialiasing Vendor parameter dead?

2020-07-01 Thread Ian Turton
I've just checked 2.17.1 and all seems fine to me. Full Antialiasing (

[Geoserver-users] Antialiasing Vendor parameter dead?

2020-07-01 Thread Bartek Burkot
Hi Geoserver users I need to switch off the antialiasing in my project but I'm not able to do it using the geoserver vendor parameter (format_options) in WMS request (regarding the documentation ). The vendor

Re: [Geoserver-users] Delete user with REST api?

2020-07-01 Thread Andrea Aime
Hi, I don't have an example, nor I have experience using that part of the API, but the source code is there: https://github.com/geoserver/geoserver/blob/master/src/restconfig/src/main/java/org/geoserver/rest/security/UsersRestController.java#L94 So it seems the path to use would be

Re: [Geoserver-users] Delete user with REST api?

2020-07-01 Thread Christian Mayer
Hi Gus, I checked and I also could not delete a user by the REST API (tested with GeoServer v2.17.1). I could load the users by doing a HTTP GET request http://localhost:8080/geoserver/rest/security/usergroup/users If I try to remove a user (user is existing) by HTTP DELETE against