Re: [Geoserver-users] hierarchical group search with LDAP generates a ConcurrentModificationException

2020-02-06 Thread fernando.m...@geo-solutions.it
Hi Giovanni, Indeed this seems to be a valid bug on Ldap module, so please can you create an issue for this on?: https://osgeo-org.atlassian.net/projects/GEOS/summary The fix code looks good, but community will need to create a test checking this issue, so a full and detailed

Re: [Geoserver-users] geoserver error

2019-11-25 Thread fernando.m...@geo-solutions.it
Hi George, It seems like the EnterpriseDB postgresql distribution is running a web server with the same default port as Apache Tomcat(8080), so you need to stop it and maybe disable it too, then restart Tomcat-Geoserver instance. There is some questions and answers about disabling it on

Re: [Geoserver-users] Getting started with GeoServer - Are there any frameworks to easily create an interactive mapping application?

2019-11-18 Thread fernando.m...@geo-solutions.it
Hi Mark, about fourth item: > Fourth, > I am also interested in creating a secure interactive web editing map.  Users will only really need to add points, a house number, and perhaps add some comments.  This will be a very low use application so I would like to avoid installing a DBMS if I

Re: [Geoserver-users] Getting started with GeoServer - Are there any frameworks to easily create an interactive mapping application?

2019-11-18 Thread fernando.m...@geo-solutions.it
Hi Mark, > First, > My understanding is that GeoServer runs on Java, however Java from Oracle is no longer free to use.  I heard of the Open JDK project.  However, I am not sure which version I should use for a Windows 64 bit environment.  Could  someone let me know which version I should

Re: [Geoserver-users] GeoServer MongoDB Plugin

2019-11-18 Thread fernando.m...@geo-solutions.it
Hi Fiona, Looks like there is a bug with the MongoDB rest controller plugin and its optional integration with AppSchema module trying to load some classes without need. I would recommend to add the AppSchema plugin as workaround while this bug gets a fix.  I will add this bug to Geoserver

Re: [Geoserver-users] ECQL and polar regions. Convert CQL to OGC filter??

2019-10-21 Thread fernando.m...@geo-solutions.it
Hi Phil. You can see multiple examples on using OGC filters, I'm sharing some links I remember fast now: https://geoserver.geo-solutions.it/edu/en/vector_data/filter.html https://gis.stackexchange.com/a/26298 https://docs.geoserver.org/stable/en/user/filter/function.html

Re: [Geoserver-users] Geoserver extension to use custom schema when crateing new data store

2019-01-21 Thread fernando.m...@geo-solutions.it
Hi Norman. Usually in Store factories it's used an URL typed parameter to parse the "url" user input as we see on Shapefile one: public static final Param URLP = new Param( "url", URL.class, "url to a .shp file", true, null, new KVP(Param.EXT,

Re: [Geoserver-users] Enable Geoserver extension to receive a custom query parameter from WMS frontend URL request

2019-01-15 Thread fernando.m...@geo-solutions.it
Hi Norm You could do good use of org.geoserver.ows.Dispatcher and KVP API on geoserver codebase. For example if you want to get a parameter with name STUFF you could get it doing: Request req = Dispatcher.REQUEST.get(); Map kvp = req.getKvp(); String