Re: [Geoserver-users] GeoServer 2.2.4 login does not work in WebSphere 8.5.5, but GeoServer 2.8.5 does!

2019-10-18 Thread Andrea Aime
Hi Juanita,
this would be useful information in a tutorial I believe... there is one
for JBoss here:
https://docs.geoserver.org/stable/en/user/tutorials/jboss/jboss_tutorial.html

Maybe you could add one for WebSphere too?
Instructions on how to write docs here:
https://docs.geoserver.org/latest/en/docguide/

Cheers
Andrea


On Thu, Oct 17, 2019 at 5:58 PM Juanita Dahlin <
juanita.av...@concept-solutions.com> wrote:

> I have good news. After deploying various GeoServer releases in WebSphere
> 8.5.5, I found that I can successfully login to GeoServer 2.8.5 when it's
> deployed in WebSphere.
>
> However, I did have to make one change to the web.xml file to fix garbage
> character display on the admin site. I commented out compression types (I
> believe WebSphere must already provide compression so double compression
> was producing funny characters):
>
>  compressed-types
>*  *
>
> FYI, I had to repackage the war with the jar utility and redeploy to fix
> the character issue. It appears that WebSphere ignores changes to the
> web.xml file after deployment, even if the servers are restarted.
>
> From testing newer GeoServer releases in WebSphere 8.5.5, I concluded that
> everything from 2.9 onwards produces the following message in the browser:
>
> Error 500: javax.servlet.ServletException: Filter [filterChainProxy]:
> could not be initialized
>
> According to the logs there is an issue with casting an XML document
> builder factory object:
>
> java.lang.ClassCastException:
> org.apache.xerces.jaxp.DocumentBuilderFactoryImpl cannot be cast to
> javax.xml.parsers.DocumentBuilderFactory
>
> Since GeoServer 2.9 is the first release built with Java 8, my guess would
> be that the XML parsing libraries that come with the standard Java 8 JDK
> differ from the Java 8 libraries installed in WebSphere. The issue could
> likely be fixed by installing the correct libraries as shared libraries in
> WebSphere and ensuring that they are loaded before the WebSphere Java
> libraries.
>
> Thanks,
> Juanita
>
> On Wed, Oct 16, 2019 at 9:02 AM Juanita Dahlin <
> juanita.av...@concept-solutions.com> wrote:
>
>> Thank you for the recommendations, Jody. I will do some research into
>> changing the XML parser. I'm going to test a few more versions of GeoServer
>> to see if any supported versions produce the same login issue as 2.2.4.
>>
>> Thanks for your help,
>>   Juanita
>>
>> On Tue, Oct 15, 2019 at 7:07 PM Jody Garnett 
>> wrote:
>>
>>> I would be far more comfortable if you work on a supported version of
>>> GeoServer and focus on getting that working (2.2.4 was released in 2013!)
>>> Can you check the xml parsers available in web sphere? It looks like the
>>> parser provided by your environment is not supported?
>>>
>>> You have quite the work cut out for you Juanita, although we ask for
>>> testing each release cycle you are the first to provide feedback in ...
>>> quite some time.
>>>
>>>
>>>
>>> --
>>> Jody Garnett
>>>
>>>
>>> On Tue, 15 Oct 2019 at 12:51, Juanita Dahlin <
>>> juanita.av...@concept-solutions.com> wrote:
>>>
 Hello GeoServer Team,

 I've been tasked with porting GeoServer 2.2.4 from GlassFish to
 WebSphere 8.5.5. GeoServer runs fine under WebSphere except for login to
 the admin site.

 When I attempt to login to the GeoServer admin site, I am directed to a
 blank /j_spring_security_check page. If I tail the geoserver.log or the
 WebSphere SystemOut.log absolutely no messages are logged. It's as if the
 Spring login filter is not invoked at all.

 I've tried various WebSphere tweaks including class load order and
 custom Web Container properties. Evidently the invokefilterscompatibility
 property used to solve similar issues in older versions of WebSphere, but
 it's no longer available in WebSphere 8.5.5:

 com.ibm.ws.webcontainer.invokefilterscompatibility = true

 Has anyone else had success getting GeoServer login to work in
 WebSphere 8.5.5?

 FYI, I also have the option of upgrading to a newer version of
 GeoServer. However, I've tried 2.16.0 and 2.14.4 and cannot even get the
 admin site to come up. With newer versions of GeoServer, I see this message
 in the browser:

 Error 500: javax.servlet.ServletException: Filter [filterChainProxy]:
 could not be initialized

 And this message in the logs:

 java.lang.ClassCastException:
 org.apache.xerces.jaxp.DocumentBuilderFactoryImpl cannot be cast to
 javax.xml.parsers.DocumentBuilderFactory

 Thanks for your help,
 Juanita Dahlin

 --

 *Juanita Avila Dahlin*

 Software Developer for the FAA AIM-SAA program

 ConceptSolutions, LLC

 www.concept-solutions.com


 www.concept-solutions.com

 *An Equal Opportunity Employer*
 CONFIDENTIALITY NOTICE: The information and/or documents contained in
 this transmission may 

Re: [Geoserver-users] Which Java 8? A quick benchmark

2019-10-18 Thread timita
That is correct, Andrea. It's a dataset with over 600,000 fairly complex
polygons, but no complex styles, and the requested tiles are 512 x 512. Some
tiles in those samples (generated randomly) have over 300K features in them.

The machine is small, with 4 vCPU and 8 GB of RAM and GeoServer is running
across three Tomcat containers, with 1GB RAM allocated to each.

So, it's just sheer size for now - I wanted to bring it to its knees,
because in production we have a different approach. As I allowed 100K max
fetch size, I guess the switch to TWKB also makes a difference, even if the
database is local.

Can't wait to see what it does with some layers with complex stiles that we
have. If I run any benchmarks, I will publish here.

I watched most of the presentations from Bucharest, but it seems I missed
this one. Thanks for pointing it out!

Manuel Timita
illustreets.com



--
Sent from: http://osgeo-org.1560.x6.nabble.com/GeoServer-User-f3786390.html


___
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] Which Java 8? A quick benchmark

2019-10-18 Thread Andrea Aime
By the low throughput value I imagine the map in question is quite complex,
yes? (or the map generated is just big?)
If so, I'm guessing you're seeing the effects of the changes made to speed
up the OSM map generation in GeoServer 2.16.0,

I've presented that work at FOSS4G 2019:
https://media.ccc.de/v/bucharest-245-standing-up-a-osm-clone-with-geoserver-and-css

Cheers
Andrea


On Fri, Oct 18, 2019 at 6:38 PM timita  wrote:

> The cherry on the cake: I repeated the same test, but with GeoServer
> 2.16.0 and only for Amazon Corretto (which originally was the fastest). No
> other changes to the config or to the dataset. Quite an impressive gain by
> just switching from GeoServer 2.15.0 to 2.16.0.
>
> +---+---+-+-+--+---+-++-+-++
> | Label | # Samples | Average | Min | Max  | Std. Dev. | Error % | Throughput 
> | Received KB/sec | Sent KB/sec | Avg. Bytes |
> +---+---+-+-+--+---+-++-+-++
> | 1 |   100 | 228 |  24 | 1112 |234.85 | 0.00%   |4.37771 
> |  520.37 |1.51 | 121721 |
> | 2 |   100 | 243 |  23 | 1223 | 258.9 | 0.00%   |7.89827 
> |  938.82 |2.72 |   121717.1 |
> | 4 |   200 | 364 |  23 | 1935 |388.94 | 0.00%   |   10.17087 
> | 1208.95 | 3.5 |   121716.5 |
> | TOTAL |   400 | 300 |  23 | 1935 |332.21 | 0.00%   |7.25019 
> |  861.79 | 2.5 |   121717.8 |
> +---+---+-+-+--+---+-++-+-++
>
> Humble thanks from a happy GeoServer user! Manuel Timita
> --
> Sent from the GeoServer - User mailing list archive
>  at
> Nabble.com.
> ___
> 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
>


-- 

Regards, Andrea Aime == GeoServer Professional Services from the experts!
Visit http://goo.gl/it488V for more information. == Ing. Andrea Aime
@geowolf Technical Lead GeoSolutions S.A.S. Via di Montramito 3/A 55054
Massarosa (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339
8844549 http://www.geo-solutions.it http://twitter.com/geosolutions_it
--- *Con riferimento
alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
circostanza inerente alla presente email (il suo contenuto, gli eventuali
allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
sarei comunque grato se potesse darmene notizia. This email is intended
only for the person or entity to which it is addressed and may contain
information that is privileged, confidential or otherwise protected from
disclosure. We remind that - as provided by European Regulation 2016/679
“GDPR” - copying, dissemination or use of this e-mail or the information
herein by anyone other than the intended recipient is prohibited. If you
have received this email by mistake, please notify us immediately by
telephone or e-mail.*
___
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] Which Java 8? A quick benchmark

2019-10-18 Thread timita
The cherry on the cake: I repeated the same test, but with GeoServer 2.16.0
and only for Amazon Corretto (which originally was the fastest). No other
changes to the config or to the dataset. Quite an impressive gain by just
switching from GeoServer 2.15.0 to 2.16.0.Humble thanks from a happy
GeoServer user!Manuel Timita



--
Sent from: http://osgeo-org.1560.x6.nabble.com/GeoServer-User-f3786390.html___
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] Keycloak with geoserver 403 error

2019-10-18 Thread Nikola Jankovic
Hi Alessio,

Thanks for the reply.

You understood correctly. I followed the documentation fully but couldn't get 
the desired result, and after some tweaking & research I managed to achieve the 
full proper login.

I will make a PR with the updates.

Cheers,
Nikola

From: Alessio Fabiani 
Sent: 18 October 2019 14:51
To: Nikola Jankovic 
Cc: geoserver-users@lists.sourceforge.net 

Subject: Re: [Geoserver-users] Keycloak with geoserver 403 error

Hello Nikola,
sorry for the late reply and thanks for having dug into this issue.

So, as far as I understand, it is more matter of configuration right? And it 
looks like the documentation is incomplete or not clear enough, am I right?

Any chance for you to make a Pull Request on GeoServer with the updates to the 
docs so that we can review them?

If you confirm this, I will open a JIRA Issues which can be linked to the PR 
later on.

Please let me know,
Alessio.




Il giorno ven 18 ott 2019 alle ore 13:40 Nikola Jankovic 
mailto:nikola.janko...@eodc.eu>> ha scritto:
Hey all,

I have discovered what is the issue. Apparently the module doesn't recognize 
some of the token decryption algorithms, and I solved the issue by forcing 
RS256 on the client and including the realm-public-key ​for RS256 in the 
adapter config which is located in keycloak realm settings. This isn't 
mentioned in the documentation though. Any way to proceed with this?

Cheers,
Nikola

From: Nikola Jankovic mailto:nikola.janko...@eodc.eu>>
Sent: 16 October 2019 13:54
To: 
geoserver-users@lists.sourceforge.net
 
mailto:geoserver-users@lists.sourceforge.net>>
Subject: [Geoserver-users] Keycloak with geoserver 403 error

Hello all,

I am trying to run keycloak & geoserver locally, but no matter what I try (also 
tried a bunch of other things besides using the guide here 
https://docs.geoserver.org/latest/en/user/community/keycloak/index.html) I 
always get 403 after logging in to geoserver from keycloak. A successful 
session & login are logged in keycloak, but I don't get access to the GUI 
which, at first, I am trying to protect. I know it is a community module and 
experimental, but has anyone had any success setting it up? Any help would be 
greatly appreciated. Not sure also whether this might be a bug.

Specs:
Geoserver 2.15.0 running in a docker Container
openjdk version "1.8.0_212"
OpenJDK Runtime Environment (build 1.8.0_212-8u212-b01-1~deb9u1-b01)
OpenJDK 64-Bit Server VM (build 25.212-b01, mixed mode)

I tried changing roles, mapping roles, disabling ssl fully, changing flows 
within keycloak & tried to replicate the user in geoserver but always 403.

Thanks in advance.

Cheers,
Nikola

___
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 Professional Services from the experts! Visit http://goo.gl/it488V 
for more information.
==
Ing. Alessio Fabiani

@alfa7691
Founder/Technical Lead


GeoSolutions S.A.S.
Via di Montramito 3/A - 55054  Massarosa (LU) - Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob:   +39 331 6233686

http://www.geo-solutions.it
http://twitter.com/geosolutions_it
---

Con riferimento alla normativa sul trattamento dei dati personali (Reg. UE 
2016/679 - Regolamento generale sulla protezione dei dati “GDPR”), si precisa 
che ogni circostanza inerente alla presente email (il suo contenuto, gli 
eventuali allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i 
destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per 
errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le sarei 
comunque grato se potesse darmene notizia.

This email is intended only for the person or entity to which it is addressed 
and may contain information that is privileged, confidential or otherwise 
protected from disclosure. We remind that - as provided by European Regulation 
2016/679 “GDPR” - copying, dissemination or use of this e-mail or the 
information herein by anyone other than the intended recipient is prohibited. 
If you have received this email by mistake, please notify us immediately by 
telephone or e-mail.
___
Geoserver-users mailing list

Please make sure you 

Re: [Geoserver-users] Keycloak with geoserver 403 error

2019-10-18 Thread Alessio Fabiani
Hi Nikola,
it looks good to me. Thank you very much.

Alessio.

Il giorno ven 18 ott 2019 alle ore 16:10 Nikola Jankovic <
nikola.janko...@eodc.eu> ha scritto:

> Hey all,
>
> I have submitted the PR @ https://github.com/geoserver/geoserver/pull/3837
>
> I hope this is enough & if you need more info just let me know.
>
> Cheers,
> Nikola
> --
> *From:* Alessio Fabiani 
> *Sent:* 18 October 2019 15:09
> *To:* Andrea Aime 
> *Cc:* Alessio Fabiani ; Nikola Jankovic
> ; geoserver-users@lists.sourceforge.net <
> geoserver-users@lists.sourceforge.net>
> *Subject:* Re: [Geoserver-users] Keycloak with geoserver 403 error
>
> Thanks Nikola and Andrea,
> I created a JIRA issue to keep track of the change
>
> https://osgeo-org.atlassian.net/browse/GEOS-9372
>
> The Pull Request should title something like this:
>
> [GEOS-9372] Community Keycloack plugin doc is incomplete
>
> Regards,
> Alessio.
>
>
>
> Il giorno ven 18 ott 2019 alle ore 15:01 Andrea Aime <
> andrea.a...@geo-solutions.it> ha scritto:
>
> On Fri, Oct 18, 2019 at 2:58 PM Alessio Fabiani <
> alessio.fabi...@geo-solutions.it> wrote:
>
> Any chance for you to make a Pull Request on GeoServer with the updates to
> the docs so that we can review them?
>
>
> If it's small changes, this would help:
> https://docs.geoserver.org/latest/en/docguide/quickfix.html
> Otherwise see the full doc guide:
> https://docs.geoserver.org/latest/en/docguide/index.html
>
> Cheers
> Andrea
>
> ==
>
> GeoServer Professional Services from the experts! Visit
> http://goo.gl/it488V for more information. == Ing. Andrea Aime @geowolf
> Technical Lead GeoSolutions S.A.S. Via di Montramito 3/A 55054 Massarosa
> (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339 8844549
> http://www.geo-solutions.it http://twitter.com/geosolutions_it
> --- *Con riferimento
> alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
> Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
> circostanza inerente alla presente email (il suo contenuto, gli eventuali
> allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
> destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
> errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
> sarei comunque grato se potesse darmene notizia. This email is intended
> only for the person or entity to which it is addressed and may contain
> information that is privileged, confidential or otherwise protected from
> disclosure. We remind that - as provided by European Regulation 2016/679
> “GDPR” - copying, dissemination or use of this e-mail or the information
> herein by anyone other than the intended recipient is prohibited. If you
> have received this email by mistake, please notify us immediately by
> telephone or e-mail.*
>
>
>
> --
>
> ==
>
> GeoServer Professional Services from the experts! Visit
> http://goo.gl/it488V for more information.
> ==
> Ing. Alessio Fabiani
>
> @alfa7691
> Founder/Technical Lead
>
>
> GeoSolutions S.A.S.
> Via di Montramito 3/A - 55054  Massarosa (LU) - Italy
> phone: +39 0584 962313
> fax: +39 0584 1660272
> mob:   +39 331 6233686
>
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
> ---
>
> Con riferimento alla normativa sul trattamento dei dati personali (Reg. UE
> 2016/679 - Regolamento generale sulla protezione dei dati “GDPR”), si
> precisa che ogni circostanza inerente alla presente email (il suo
> contenuto, gli eventuali allegati, etc.) è un dato la cui conoscenza è
> riservata al/i solo/i destinatario/i indicati dallo scrivente. Se il
> messaggio Le è giunto per errore, è tenuta/o a cancellarlo, ogni altra
> operazione è illecita. Le sarei comunque grato se potesse darmene notizia.
>
>
> This email is intended only for the person or entity to which it is
> addressed and may contain information that is privileged, confidential or
> otherwise protected from disclosure. We remind that - as provided by
> European Regulation 2016/679 “GDPR” - copying, dissemination or use of this
> e-mail or the information herein by anyone other than the intended
> recipient is prohibited. If you have received this email by mistake, please
> notify us immediately by telephone or e-mail.
>


-- 

==

GeoServer Professional Services from the experts! Visit http://goo.gl/it488V
for more information.
==
Ing. Alessio Fabiani

@alfa7691
Founder/Technical Lead


GeoSolutions S.A.S.
Via di Montramito 3/A - 55054  Massarosa (LU) - Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob:   +39 331 6233686


http://www.geo-solutions.it
http://twitter.com/geosolutions_it
---

Con riferimento alla normativa sul trattamento dei dati personali (Reg. UE
2016/679 - Regolamento generale sulla protezione dei dati “GDPR”), si
precisa che ogni circostanza inerente alla 

Re: [Geoserver-users] Keycloak with geoserver 403 error

2019-10-18 Thread Nikola Jankovic
Hey all,

I have submitted the PR @ https://github.com/geoserver/geoserver/pull/3837

I hope this is enough & if you need more info just let me know.

Cheers,
Nikola

From: Alessio Fabiani 
Sent: 18 October 2019 15:09
To: Andrea Aime 
Cc: Alessio Fabiani ; Nikola Jankovic 
; geoserver-users@lists.sourceforge.net 

Subject: Re: [Geoserver-users] Keycloak with geoserver 403 error

Thanks Nikola and Andrea,
I created a JIRA issue to keep track of the change

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

The Pull Request should title something like this:

[GEOS-9372] Community Keycloack plugin doc is incomplete

Regards,
Alessio.



Il giorno ven 18 ott 2019 alle ore 15:01 Andrea Aime 
mailto:andrea.a...@geo-solutions.it>> ha scritto:
On Fri, Oct 18, 2019 at 2:58 PM Alessio Fabiani 
mailto:alessio.fabi...@geo-solutions.it>> 
wrote:
Any chance for you to make a Pull Request on GeoServer with the updates to the 
docs so that we can review them?

If it's small changes, this would help:
https://docs.geoserver.org/latest/en/docguide/quickfix.html
Otherwise see the full doc guide:
https://docs.geoserver.org/latest/en/docguide/index.html

Cheers
Andrea

==

GeoServer Professional Services from the experts! Visit http://goo.gl/it488V 
for more information. == Ing. Andrea Aime @geowolf Technical Lead GeoSolutions 
S.A.S. Via di Montramito 3/A 55054 Massarosa (LU) phone: +39 0584 962313 fax: 
+39 0584 1660272 mob: +39 339 8844549 http://www.geo-solutions.it 
http://twitter.com/geosolutions_it 
--- Con riferimento alla 
normativa sul trattamento dei dati personali (Reg. UE 2016/679 - Regolamento 
generale sulla protezione dei dati “GDPR”), si precisa che ogni circostanza 
inerente alla presente email (il suo contenuto, gli eventuali allegati, etc.) è 
un dato la cui conoscenza è riservata al/i solo/i destinatario/i indicati dallo 
scrivente. Se il messaggio Le è giunto per errore, è tenuta/o a cancellarlo, 
ogni altra operazione è illecita. Le sarei comunque grato se potesse darmene 
notizia. This email is intended only for the person or entity to which it is 
addressed and may contain information that is privileged, confidential or 
otherwise protected from disclosure. We remind that - as provided by European 
Regulation 2016/679 “GDPR” - copying, dissemination or use of this e-mail or 
the information herein by anyone other than the intended recipient is 
prohibited. If you have received this email by mistake, please notify us 
immediately by telephone or e-mail.


--

==

GeoServer Professional Services from the experts! Visit http://goo.gl/it488V 
for more information.
==
Ing. Alessio Fabiani

@alfa7691
Founder/Technical Lead


GeoSolutions S.A.S.
Via di Montramito 3/A - 55054  Massarosa (LU) - Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob:   +39 331 6233686

http://www.geo-solutions.it
http://twitter.com/geosolutions_it
---

Con riferimento alla normativa sul trattamento dei dati personali (Reg. UE 
2016/679 - Regolamento generale sulla protezione dei dati “GDPR”), si precisa 
che ogni circostanza inerente alla presente email (il suo contenuto, gli 
eventuali allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i 
destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per 
errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le sarei 
comunque grato se potesse darmene notizia.

This email is intended only for the person or entity to which it is addressed 
and may contain information that is privileged, confidential or otherwise 
protected from disclosure. We remind that - as provided by European Regulation 
2016/679 “GDPR” - copying, dissemination or use of this e-mail or the 
information herein by anyone other than the intended recipient is prohibited. 
If you have received this email by mistake, please notify us immediately by 
telephone or e-mail.
___
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] missing templates folder

2019-10-18 Thread Vera Green
If anyone else is struggling with this here are the steps:
cd /opt/tomcat/webapps/geoserver/data/workspaces
cp /yourPath/content.ftl .
chown tomcat:tomcat content.ftl
cd ..
mkdir templates
chown tomcat:tomcat templates
cp / yourPath /header.ftl templates/.
cp / yourPath /footer.ftl templates/.
chown tomcat:tomcat templates/*

So basically:

   1. create a *templates *folder at  /opt/tomcat/webapps/geoserver/data/
   2. put your header and footer in this templates folder
   3. put your content.ftl in
   /opt/tomcat/webapps/geoserver/data/workspaces to have it apply to all
   workspaces or as per the instructions in specific lower folders to apply at
   the store or layer level.

I'll try to post an issue in JIRA to request an update to the documentation
as I think this is currently unclear.
Vera


On Thu, May 23, 2019 at 1:19 AM Andrea Aime 
wrote:

> Hi Vera,
> I'm don't remember about a "templates" folder, the files are normally put
> in the data dir,
> workspace directory, if you want them to apply to the entire workspace,
> datastore directory,
> to apply them to all feature types coming from the store, or the feature
> type directory itself,
> to have one specific for the layer in question.
>
> Here is an example:
> https://geoserver.geo-solutions.it/edu/en/pretty_maps/info.html
>
> Cheers
> Andrea
>
> On Tue, May 21, 2019 at 11:16 PM Vera Green 
> wrote:
>
>> Hello,
>> I am looking at customizing some templates
>>  for
>> WMS but I do not have a templates folder.  Is this usual? Can I create it?
>> It should be here correct:
>> /opt/tomcat/webapps/geoserver/data
>>
>> GeoServer 2.15.0 running as web archive in tomcat 9.0.12
>>
>> Thanks much
>> Vera
>>
>> ___
>> 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
>>
>
>
> --
>
> Regards, Andrea Aime == GeoServer Professional Services from the experts!
> Visit http://goo.gl/it488V for more information. == Ing. Andrea Aime
> @geowolf Technical Lead GeoSolutions S.A.S. Via di Montramito 3/A 55054
> Massarosa (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339
> 8844549 http://www.geo-solutions.it http://twitter.com/geosolutions_it
> --- *Con riferimento
> alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
> Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
> circostanza inerente alla presente email (il suo contenuto, gli eventuali
> allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
> destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
> errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
> sarei comunque grato se potesse darmene notizia. This email is intended
> only for the person or entity to which it is addressed and may contain
> information that is privileged, confidential or otherwise protected from
> disclosure. We remind that - as provided by European Regulation 2016/679
> “GDPR” - copying, dissemination or use of this e-mail or the information
> herein by anyone other than the intended recipient is prohibited. If you
> have received this email by mistake, please notify us immediately by
> telephone or e-mail.*
>
___
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] Keycloak with geoserver 403 error

2019-10-18 Thread Alessio Fabiani
Thanks Nikola and Andrea,
I created a JIRA issue to keep track of the change

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

The Pull Request should title something like this:

[GEOS-9372] Community Keycloack plugin doc is incomplete

Regards,
Alessio.



Il giorno ven 18 ott 2019 alle ore 15:01 Andrea Aime <
andrea.a...@geo-solutions.it> ha scritto:

> On Fri, Oct 18, 2019 at 2:58 PM Alessio Fabiani <
> alessio.fabi...@geo-solutions.it> wrote:
>
>> Any chance for you to make a Pull Request on GeoServer with the updates
>> to the docs so that we can review them?
>>
>
> If it's small changes, this would help:
> https://docs.geoserver.org/latest/en/docguide/quickfix.html
> Otherwise see the full doc guide:
> https://docs.geoserver.org/latest/en/docguide/index.html
>
> Cheers
> Andrea
>
> ==
>
> GeoServer Professional Services from the experts! Visit
> http://goo.gl/it488V for more information. == Ing. Andrea Aime @geowolf
> Technical Lead GeoSolutions S.A.S. Via di Montramito 3/A 55054 Massarosa
> (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339 8844549
> http://www.geo-solutions.it http://twitter.com/geosolutions_it
> --- *Con riferimento
> alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
> Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
> circostanza inerente alla presente email (il suo contenuto, gli eventuali
> allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
> destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
> errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
> sarei comunque grato se potesse darmene notizia. This email is intended
> only for the person or entity to which it is addressed and may contain
> information that is privileged, confidential or otherwise protected from
> disclosure. We remind that - as provided by European Regulation 2016/679
> “GDPR” - copying, dissemination or use of this e-mail or the information
> herein by anyone other than the intended recipient is prohibited. If you
> have received this email by mistake, please notify us immediately by
> telephone or e-mail.*
>


-- 

==

GeoServer Professional Services from the experts! Visit http://goo.gl/it488V
for more information.
==
Ing. Alessio Fabiani

@alfa7691
Founder/Technical Lead


GeoSolutions S.A.S.
Via di Montramito 3/A - 55054  Massarosa (LU) - Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob:   +39 331 6233686


http://www.geo-solutions.it
http://twitter.com/geosolutions_it
---

Con riferimento alla normativa sul trattamento dei dati personali (Reg. UE
2016/679 - Regolamento generale sulla protezione dei dati “GDPR”), si
precisa che ogni circostanza inerente alla presente email (il suo
contenuto, gli eventuali allegati, etc.) è un dato la cui conoscenza è
riservata al/i solo/i destinatario/i indicati dallo scrivente. Se il
messaggio Le è giunto per errore, è tenuta/o a cancellarlo, ogni altra
operazione è illecita. Le sarei comunque grato se potesse darmene notizia.


This email is intended only for the person or entity to which it is
addressed and may contain information that is privileged, confidential or
otherwise protected from disclosure. We remind that - as provided by
European Regulation 2016/679 “GDPR” - copying, dissemination or use of this
e-mail or the information herein by anyone other than the intended
recipient is prohibited. If you have received this email by mistake, please
notify us immediately by telephone or e-mail.
___
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] Keycloak with geoserver 403 error

2019-10-18 Thread Andrea Aime
On Fri, Oct 18, 2019 at 2:58 PM Alessio Fabiani <
alessio.fabi...@geo-solutions.it> wrote:

> Any chance for you to make a Pull Request on GeoServer with the updates to
> the docs so that we can review them?
>

If it's small changes, this would help:
https://docs.geoserver.org/latest/en/docguide/quickfix.html
Otherwise see the full doc guide:
https://docs.geoserver.org/latest/en/docguide/index.html

Cheers
Andrea

==

GeoServer Professional Services from the experts! Visit http://goo.gl/it488V
for more information. == Ing. Andrea Aime @geowolf Technical Lead
GeoSolutions S.A.S. Via di Montramito 3/A 55054 Massarosa (LU) phone: +39
0584 962313 fax: +39 0584 1660272 mob: +39 339 8844549
http://www.geo-solutions.it http://twitter.com/geosolutions_it
--- *Con riferimento
alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
circostanza inerente alla presente email (il suo contenuto, gli eventuali
allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
sarei comunque grato se potesse darmene notizia. This email is intended
only for the person or entity to which it is addressed and may contain
information that is privileged, confidential or otherwise protected from
disclosure. We remind that - as provided by European Regulation 2016/679
“GDPR” - copying, dissemination or use of this e-mail or the information
herein by anyone other than the intended recipient is prohibited. If you
have received this email by mistake, please notify us immediately by
telephone or e-mail.*
___
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] Keycloak with geoserver 403 error

2019-10-18 Thread Alessio Fabiani
Hello Nikola,
sorry for the late reply and thanks for having dug into this issue.

So, as far as I understand, it is more matter of configuration right? And
it looks like the documentation is incomplete or not clear enough, am
I right?

Any chance for you to make a Pull Request on GeoServer with the updates to
the docs so that we can review them?

If you confirm this, I will open a JIRA Issues which can be linked to the
PR later on.

Please let me know,
Alessio.




Il giorno ven 18 ott 2019 alle ore 13:40 Nikola Jankovic <
nikola.janko...@eodc.eu> ha scritto:

> Hey all,
>
> I have discovered what is the issue. Apparently the module doesn't
> recognize some of the token decryption algorithms, and I solved the issue
> by forcing RS256 on the client and including the *realm-public-key *​for
> RS256 in the adapter config which is located in keycloak realm settings.
> This isn't mentioned in the documentation though. Any way to proceed with
> this?
>
> Cheers,
> Nikola
> --
> *From:* Nikola Jankovic 
> *Sent:* 16 October 2019 13:54
> *To:* geoserver-users@lists.sourceforge.net <
> geoserver-users@lists.sourceforge.net>
> *Subject:* [Geoserver-users] Keycloak with geoserver 403 error
>
> Hello all,
>
> I am trying to run keycloak & geoserver locally, but no matter what I try
> (also tried a bunch of other things besides using the guide here
> https://docs.geoserver.org/latest/en/user/community/keycloak/index.html)
> I always get 403 after logging in to geoserver from keycloak. A successful
> session & login are logged in keycloak, but I don't get access to the GUI
> which, at first, I am trying to protect. I know it is a community module
> and experimental, but has anyone had any success setting it up? Any help
> would be greatly appreciated. Not sure also whether this might be a bug.
>
> Specs:
> Geoserver 2.15.0 running in a docker Container
> openjdk version "1.8.0_212"
> OpenJDK Runtime Environment (build 1.8.0_212-8u212-b01-1~deb9u1-b01)
> OpenJDK 64-Bit Server VM (build 25.212-b01, mixed mode)
>
> I tried changing roles, mapping roles, disabling ssl fully, changing flows
> within keycloak & tried to replicate the user in geoserver but always 403.
>
> Thanks in advance.
>
> Cheers,
> Nikola
>
> ___
> 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 Professional Services from the experts! Visit http://goo.gl/it488V
for more information.
==
Ing. Alessio Fabiani

@alfa7691
Founder/Technical Lead


GeoSolutions S.A.S.
Via di Montramito 3/A - 55054  Massarosa (LU) - Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob:   +39 331 6233686


http://www.geo-solutions.it
http://twitter.com/geosolutions_it
---

Con riferimento alla normativa sul trattamento dei dati personali (Reg. UE
2016/679 - Regolamento generale sulla protezione dei dati “GDPR”), si
precisa che ogni circostanza inerente alla presente email (il suo
contenuto, gli eventuali allegati, etc.) è un dato la cui conoscenza è
riservata al/i solo/i destinatario/i indicati dallo scrivente. Se il
messaggio Le è giunto per errore, è tenuta/o a cancellarlo, ogni altra
operazione è illecita. Le sarei comunque grato se potesse darmene notizia.


This email is intended only for the person or entity to which it is
addressed and may contain information that is privileged, confidential or
otherwise protected from disclosure. We remind that - as provided by
European Regulation 2016/679 “GDPR” - copying, dissemination or use of this
e-mail or the information herein by anyone other than the intended
recipient is prohibited. If you have received this email by mistake, please
notify us immediately by telephone or e-mail.
___
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

Re: [Geoserver-users] Matching pre-built Windows x64 binaries for GeoServer 2.16.0, GDAL 2.x, and ECW JPEG 2000 SDK 5.4

2019-10-18 Thread Andrea Aime
Mats,
the Windows installer is there to help people get started, testing
GeoServer and getting to know it,
and play with it on their development machine (which is Windows for many).
Having an installer that gives many people a quick intro to GeoServer is
important for the project diffusion.

We agree it's not meant for production, making a production grade installer
would be possible, but there are no resources
for it, Windows installations drive very little business (as GeoServer on
Linux is anecdotally 30% faster than on Windows,
and easier to handle due to file lock issues on Windows).

I'm guessing there is a business opportunity there, if nobody wants to do a
production grade installer for Windows in spare time,
some could come up with it as a paid product. GeoServer would remain GPL,
but the installer could be closed source.
Would be a good fit for those that have trouble handling a Tomcat
installation (believe it or not, I've met various).

Having a good guide on how to setup GeoServer on Windows for production
would help, and maybe it's easier to
find someone that is willing to contribute it in their spare time, rather
than writing an installer.
If anyone is so inclined, please see the following to get started:
https://docs.geoserver.org/latest/en/docguide/

Cheers
Andrea


On Thu, Oct 17, 2019 at 12:05 PM Mats Elfström 
wrote:

> Hi!
> I really do not miss the windows installer. The war-file approach is so
> mych easier to deploy, and makes Geoserver run as a service. As a server
> application obviously should.
> Also, it was said that the Windows installer only created a test or toy
> installation. I had no use for that.
> Last month I was setting up a geodata server, and was a bit taken back
> without the familiar windows installer. But figured out how to use the war
> file. I also wanted Geonetwork which was even easier to launch.
> So, I Installed Apache Tomcat/9.0.26 as a service, dropped two war files
> in a folder and that was it.
> Then (as previously reported) I had a bit of trouble installing the GDAL
> libraries. This was because no documentation dealt with this setup.
> This was so simple that I'm afraid I am missing some important point here.
> What would be the advantage be with a windows installer, as compared to
> the war-file installation?
>
>
> *GisKraft*, Geodatakonsult
>
> Mats Elfström, Marsvinsholms stationsväg 80, 271 93 Ystad, Sweden
> tel: +46 70 595 39 35 / web: www.giskraft.com
>
>
> Den tors 17 okt. 2019 kl 11:39 skrev Andrea Aime <
> andrea.a...@geo-solutions.it>:
>
>> On Thu, Oct 17, 2019 at 4:33 AM Tom Lynch  wrote:
>>
>>> Hi Daniele and Mats,
>>>
>>> Just to report on my experience, after that tip from Daniele I was able
>>> to get the whole setup working almost immediately, but using the WAR
>>> download and a 64-bit install of Tomcat 8.5 as a service. I wasn't able to
>>> get the platform-independent binary to load the GDAL stack despite it
>>> running under a 64-bit JRE, which was a bit perplexing.
>>>
>>
>> Hum... did you try to start it stand alone or as a service? The service
>> mode is compatible only with 32bit, was a limitation of the tool
>> we used many years ago to create a service around GeoServer. The Windows
>> installer could certainly use a make over, if anyone
>> wants to put some development time in it, it would be appreciated.
>>
>>
>>> All good though, working now and I'm unblocked. Thanks again for your
>>> help. Let me know if there's a way I can contribute to documentation and so
>>> on.
>>>
>>
>> The docs are in version control, written in RST, pull requests are
>> welcomed:
>> https://github.com/geoserver/geoserver/tree/master/doc/en/user/source
>>
>> If you find that you just want to modify parts of a page, you can just
>> hit the "edit" link available in each page right menu,
>> and will brig you to the relevant github resource where you can follow
>> the quick fix procedure:
>> https://docs.geoserver.org/latest/en/docguide/quickfix.html
>>
>> Hope this helps
>>
>> Cheers
>> Andrea
>>
>> ==
>>
>> GeoServer Professional Services from the experts! Visit
>> http://goo.gl/it488V for more information. == Ing. Andrea Aime @geowolf
>> Technical Lead GeoSolutions S.A.S. Via di Montramito 3/A 55054 Massarosa
>> (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339 8844549
>> http://www.geo-solutions.it http://twitter.com/geosolutions_it
>> --- *Con riferimento
>> alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
>> Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
>> circostanza inerente alla presente email (il suo contenuto, gli eventuali
>> allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
>> destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
>> errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
>> sarei comunque grato se potesse darmene notizia. This email is intended
>> only for 

Re: [Geoserver-users] Keycloak with geoserver 403 error

2019-10-18 Thread Nikola Jankovic
Hey all,

I have discovered what is the issue. Apparently the module doesn't recognize 
some of the token decryption algorithms, and I solved the issue by forcing 
RS256 on the client and including the realm-public-key ​for RS256 in the 
adapter config which is located in keycloak realm settings. This isn't 
mentioned in the documentation though. Any way to proceed with this?

Cheers,
Nikola

From: Nikola Jankovic 
Sent: 16 October 2019 13:54
To: geoserver-users@lists.sourceforge.net 

Subject: [Geoserver-users] Keycloak with geoserver 403 error

Hello all,

I am trying to run keycloak & geoserver locally, but no matter what I try (also 
tried a bunch of other things besides using the guide here 
https://docs.geoserver.org/latest/en/user/community/keycloak/index.html) I 
always get 403 after logging in to geoserver from keycloak. A successful 
session & login are logged in keycloak, but I don't get access to the GUI 
which, at first, I am trying to protect. I know it is a community module and 
experimental, but has anyone had any success setting it up? Any help would be 
greatly appreciated. Not sure also whether this might be a bug.

Specs:
Geoserver 2.15.0 running in a docker Container
openjdk version "1.8.0_212"
OpenJDK Runtime Environment (build 1.8.0_212-8u212-b01-1~deb9u1-b01)
OpenJDK 64-Bit Server VM (build 25.212-b01, mixed mode)

I tried changing roles, mapping roles, disabling ssl fully, changing flows 
within keycloak & tried to replicate the user in geoserver but always 403.

Thanks in advance.

Cheers,
Nikola
___
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