[Geoserver-users] ReprojectGeometry WPS problem from 2.22.0 GeoServer version using application/json input

Hi,

I noticed that from version 2.22.0 of GeoServe, running the WPS process “gs:RepojectGeometry” with application/json input no longer works correctly while, for example, with version 2.18.2 everything worked correctly.

I tried with several recent versions, up to 2.23.1.

The Java version used in the latest versions is 11 as recommended by the minimum requirements of GeoServer (in version 2.18.2 I used version 8).

If I test the process with WKT input, everything works fine, while if I use application/json, I get the following error:

31 Oct 09:48:28 ERROR [wps.executor] - Process execution failed

org.geoserver.wps.WPSException: Failed to retrieve value for input geometry

at org.geoserver.wps.executor.LazyInputMap.parseInputs(LazyInputMap.java:98)

at org.geoserver.wps.executor.LazyInputMap.get(LazyInputMap.java:50)

at org.geotools.process.factory.AnnotationDrivenProcessFactory$InvokeMethodProcess.buildProcessArguments(AnnotationDrivenProcessFactory.java:748)

at org.geotools.process.factory.AnnotationDrivenProcessFactory$InvokeMethodProcess.execute(AnnotationDrivenProcessFactory.java:628)

at org.geoserver.wps.executor.ProcessStartupFilter$ProcessStartupWrapper.execute(ProcessStartupFilter.java:50)

at org.geoserver.wps.executor.DefaultProcessManager$ProcessCallable.call(DefaultProcessManager.java:222)

at org.geoserver.wps.executor.DefaultProcessManager$ProcessCallable.call(DefaultProcessManager.java:191)

at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)

at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)

at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)

at java.base/java.lang.Thread.run(Thread.java:829)

Caused by: java.lang.NullPointerException

at com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer.deserialize(GeometryDeserializer.java:45)

at com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer.deserialize(GeometryDeserializer.java:33)

at com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323)

at com.fasterxml.jackson.databind.ObjectMapper._readValue(ObjectMapper.java:4650)

at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2831)

at org.geoserver.wps.ppio.GeoJSONPPIO$Geometries.decode(GeoJSONPPIO.java:134)

at org.geoserver.wps.ppio.CDataPPIO.decode(CDataPPIO.java:21)

at org.geoserver.wps.executor.SimpleInputProvider.getValueInternal(SimpleInputProvider.java:81)

at org.geoserver.wps.executor.AbstractInputProvider.getValue(AbstractInputProvider.java:103)

at org.geoserver.wps.executor.LazyInputMap.parseInputs(LazyInputMap.java:90)

The XML to test the functionality is as follows:

<?xml version="1.0" encoding="UTF-8"?><wps:Execute version=“1.0.0” service=“WPS” xmlns:xsi=“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”>

ows:Identifiergs:ReprojectGeometry</ows:Identifier>

wps:DataInputs

wps:Input

ows:Identifiergeometry</ows:Identifier>

wps:Data

<wps:ComplexData mimeType=“application/json”></wps:ComplexData>

</wps:Data>

</wps:Input>

wps:Input

ows:IdentifiersourceCRS</ows:Identifier>

wps:Data

wps:LiteralDataEPSG:3857</wps:LiteralData>

</wps:Data>

</wps:Input>

wps:Input

ows:IdentifiertargetCRS</ows:Identifier>

wps:Data

wps:LiteralDataEPSG:3003</wps:LiteralData>

</wps:Data>

</wps:Input>

</wps:DataInputs>

wps:ResponseForm

<wps:RawDataOutput mimeType=“application/json”>

ows:Identifierresult</ows:Identifier>

</wps:RawDataOutput>

</wps:ResponseForm>

</wps:Execute>

Daniele Maggiolo

Settore Tecnico

signature_3331596089

Via Roma, 5 – 36026, Pojana Maggiore (VI)

Tel. 0444 794127 – www.abitat.it

La presente e-mail ha carattere esclusivamente aziendale. Personale incaricato della ditta Abitat SIT srl potrà accedere al contenuto della e-mail e a eventuali risposte. Non è consentita la diffusione, distribuzione e copia della e-mail da parte di persona diversa dal destinatario. Non permettendo Internet di assicurare l’integrità del presente messaggio si declina ogni responsabilità nell’ipotesi in cui esso venga modificato. Se avete ricevuto questa e-mail per errore vi preghiamo di eliminarla e darne comunicazione al mittente. Grazie per la Vostra collaborazione.

image001.png

I am a bit confused, checking GeometryDeserializer.java line 45:

And line 45 does not exist … huh.

I looked online for a bit and did not find com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer yet (maybe someone else can help?)

I assume it is trying to parse GeoJSON when the failure occurs, perhaps look at the json output for anything odd or missing?

image001.png

···


Jody Garnett

Hi,

Jody, that code has been copied into GeoTools codebase in the module gt-geojson-core.

https://github.com/geotools/geotools/blob/main/modules/unsupported/geojson-core/src/main/java/com/bedatadriven/jackson/datatype/jts/serialization/GeometryDeserializer.java

And, the lines 44-45 were the error occurs is as follows:

ObjectCodec oc = jsonParser.getCodec();
JsonNode root = oc.readTree(jsonParser);

Here oc is the troublemaker being null, but according to the docs of getCodec() that could be the case so it should be handled in a way or the other. I’m afraid I haven’t really looked into this module, so I can’t really say how it should be handled.

Regards,
Roar Brænden

···


Jody Garnett

This is a regression from the following commit that got missed because the bug wasn’t covered by existing unit tests:
https://github.com/geoserver/geoserver/commit/587768dfcbe166bbf7972d172f454f1b3f17a043#diff-cb964c0310e4da804603b89cac17d51824cc66e2f626c4af6902610c8a8e9329

Getting rid of the JsonParser/JsonFactory stuff and just calling MAPPER.readValue(input, Geometry.class); should work.

Steve Ikeoka

···

From: Roar Brænden <roar.brenden.no@…84…>
Sent: Wednesday, November 1, 2023 7:09 AM
To: Jody Garnett <jody.garnett@…84…>
Cc: geoserver-users@lists.sourceforge.net geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] ReprojectGeometry WPS problem from 2.22.0 GeoServer version using application/json input

Hi, Jody, that code has been copied into GeoTools codebase in the module gt-geojson-core. https: //github. com/geotools/geotools/blob/main/modules/unsupported/geojson-core/src/main/java/com/bedatadriven/jackson/datatype/jts/serialization/GeometryDeserializer. javaAnd,
ZjQcmQRYFpfptBannerStart

This Message Is From an External Sender
This message came from outside your organization.
If you think this is a phishing email report it using the report phish button. For additional assistance go to OneGDIT Service Center KB0030624

ZjQcmQRYFpfptBannerEnd
Hi,

Jody, that code has been copied into GeoTools codebase in the module gt-geojson-core.

https://github.com/geotools/geotools/blob/main/modules/unsupported/geojson-core/src/main/java/com/bedatadriven/jackson/datatype/jts/serialization/GeometryDeserializer.java

And, the lines 44-45 were the error occurs is as follows:

ObjectCodec oc = jsonParser.getCodec();
JsonNode root = oc.readTree(jsonParser);

Here oc is the troublemaker being null, but according to the docs of getCodec() that could be the case so it should be handled in a way or the other. I’m afraid I haven’t really looked into this module, so I can’t really say how it should be handled.

Regards,
Roar Brænden

  1. okt. 2023 kl. 21:55 skrev Jody Garnett <jody.garnett@…84…>:

I am a bit confused, checking GeometryDeserializer.java line 45:

And line 45 does not exist … huh.

I looked online for a bit and did not find com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer yet (maybe someone else can help?)

I assume it is trying to parse GeoJSON when the failure occurs, perhaps look at the json output for anything odd or missing?


Jody Garnett

On Oct 31, 2023 at 1:53:06 AM, Daniele Maggiolo via Geoserver-users <geoserver-users@lists.sourceforge.net> wrote:

Hi,

I noticed that from version 2.22.0 of GeoServe, running the WPS process “gs:RepojectGeometry” with application/json input no longer works correctly while, for example, with version 2.18.2 everything worked correctly.

I tried with several recent versions, up to 2.23.1.

The Java version used in the latest versions is 11 as recommended by the minimum requirements of GeoServer (in version 2.18.2 I used version 8).

If I test the process with WKT input, everything works fine, while if I use application/json, I get the following error:

31 Oct 09:48:28 ERROR [wps.executor] - Process execution failed

org.geoserver.wps.WPSException: Failed to retrieve value for input geometry

at org.geoserver.wps.executor.LazyInputMap.parseInputs(LazyInputMap.java:98)

at org.geoserver.wps.executor.LazyInputMap.get(LazyInputMap.java:50)

at org.geotools.process.factory.AnnotationDrivenProcessFactory$InvokeMethodProcess.buildProcessArguments(AnnotationDrivenProcessFactory.java:748)

at org.geotools.process.factory.AnnotationDrivenProcessFactory$InvokeMethodProcess.execute(AnnotationDrivenProcessFactory.java:628)

at org.geoserver.wps.executor.ProcessStartupFilter$ProcessStartupWrapper.execute(ProcessStartupFilter.java:50)

at org.geoserver.wps.executor.DefaultProcessManager$ProcessCallable.call(DefaultProcessManager.java:222)

at org.geoserver.wps.executor.DefaultProcessManager$ProcessCallable.call(DefaultProcessManager.java:191)

at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)

at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)

at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)

at java.base/java.lang.Thread.run(Thread.java:829)

Caused by: java.lang.NullPointerException

at com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer.deserialize(GeometryDeserializer.java:45)

at com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer.deserialize(GeometryDeserializer.java:33)

at com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323)

at com.fasterxml.jackson.databind.ObjectMapper._readValue(ObjectMapper.java:4650)

at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2831)

at org.geoserver.wps.ppio.GeoJSONPPIO$Geometries.decode(GeoJSONPPIO.java:134)

at org.geoserver.wps.ppio.CDataPPIO.decode(CDataPPIO.java:21)

at org.geoserver.wps.executor.SimpleInputProvider.getValueInternal(SimpleInputProvider.java:81)

at org.geoserver.wps.executor.AbstractInputProvider.getValue(AbstractInputProvider.java:103)

at org.geoserver.wps.executor.LazyInputMap.parseInputs(LazyInputMap.java:90)

The XML to test the functionality is as follows:

<?xml version="1.0" encoding="UTF-8"?><wps:Execute version=“1.0.0” service=“WPS” xmlns:xsi=“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”>

ows:Identifiergs:ReprojectGeometry</ows:Identifier>

wps:DataInputs

wps:Input

ows:Identifiergeometry</ows:Identifier>

wps:Data

<wps:ComplexData mimeType=“application/json”></wps:ComplexData>

</wps:Data>

</wps:Input>

wps:Input

ows:IdentifiersourceCRS</ows:Identifier>

wps:Data

wps:LiteralDataEPSG:3857</wps:LiteralData>

</wps:Data>

</wps:Input>

wps:Input

ows:IdentifiertargetCRS</ows:Identifier>

wps:Data

wps:LiteralDataEPSG:3003</wps:LiteralData>

</wps:Data>

</wps:Input>

</wps:DataInputs>

wps:ResponseForm

<wps:RawDataOutput mimeType=“application/json”>

ows:Identifierresult</ows:Identifier>

</wps:RawDataOutput>

</wps:ResponseForm>

</wps:Execute>

Daniele Maggiolo

Settore Tecnico

<image001.png>

Via Roma, 5 – 36026, Pojana Maggiore (VI)

Tel. 0444 794127 – www.abitat.it

La presente e-mail ha carattere esclusivamente aziendale. Personale incaricato della ditta Abitat SIT srl potrà accedere al contenuto della e-mail e a eventuali risposte. Non è consentita la diffusione, distribuzione e copia della e-mail da parte di persona diversa dal destinatario. Non permettendo Internet di assicurare l’integrità del presente messaggio si declina ogni responsabilità nell’ipotesi in cui esso venga modificato. Se avete ricevuto questa e-mail per errore vi preghiamo di eliminarla e darne comunicazione al mittente. Grazie per la Vostra collaborazione.


Geoserver-users mailing list

Please make sure you read the following two resources before posting to this list:

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:

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

HI,

will this bug be fixed in future versions of GeoServer?

Daniele Maggiolo

···

Da: Ikeoka, Steve via Geoserver-users geoserver-users@lists.sourceforge.net
Inviato: mercoledì 1 novembre 2023 16:17
A: Roar Brænden <roar.brenden.no@…84…>; Jody Garnett <jody.garnett@…84…>
Cc: geoserver-users@lists.sourceforge.net
Oggetto: Re: [Geoserver-users] ReprojectGeometry WPS problem from 2.22.0 GeoServer version using application/json input

This is a regression from the following commit that got missed because the bug wasn’t covered by existing unit tests:

https://github.com/geoserver/geoserver/commit/587768dfcbe166bbf7972d172f454f1b3f17a043#diff-cb964c0310e4da804603b89cac17d51824cc66e2f626c4af6902610c8a8e9329

Getting rid of the JsonParser/JsonFactory stuff and just calling MAPPER.readValue(input, Geometry.class); should work.

Steve Ikeoka


From: Roar Brænden <roar.brenden.no@…84…>
Sent: Wednesday, November 1, 2023 7:09 AM
To: Jody Garnett <jody.garnett@…84…>
Cc: geoserver-users@lists.sourceforge.net <geoserver-users@lists.sourceforge.net>
Subject: Re: [Geoserver-users] ReprojectGeometry WPS problem from 2.22.0 GeoServer version using application/json input

Hi, Jody, that code has been copied into GeoTools codebase in the module gt-geojson-core. https: //github. com/geotools/geotools/blob/main/modules/unsupported/geojson-core/src/main/java/com/bedatadriven/jackson/datatype/jts/serialization/GeometryDeserializer. javaAnd,

ZjQcmQRYFpfptBannerStart

This Message Is From an External Sender

This message came from outside your organization.

If you think this is a phishing email report it using the report phish button. For additional assistance go to OneGDIT Service Center KB0030624

ZjQcmQRYFpfptBannerEnd

Hi,

Jody, that code has been copied into GeoTools codebase in the module gt-geojson-core.

https://github.com/geotools/geotools/blob/main/modules/unsupported/geojson-core/src/main/java/com/bedatadriven/jackson/datatype/jts/serialization/GeometryDeserializer.java

And, the lines 44-45 were the error occurs is as follows:

ObjectCodec

oc = jsonParser.getCodec();

JsonNode

root = oc.readTree(jsonParser);

Here oc is the troublemaker being null, but according to the docs of getCodec() that could be the case so it should be handled in a way or the other. I’m afraid I haven’t really looked into this module, so I can’t really say how it should be handled.

Regards,

Roar Brænden

  1. okt. 2023 kl. 21:55 skrev Jody Garnett <jody.garnett@…84…>:

I am a bit confused, checking GeometryDeserializer.java line 45:

And line 45 does not exist … huh.

I looked online for a bit and did not find com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer yet (maybe someone else can help?)

I assume it is trying to parse GeoJSON when the failure occurs, perhaps look at the json output for anything odd or missing?

Jody Garnett

On Oct 31, 2023 at 1:53:06 AM, Daniele Maggiolo via Geoserver-users <geoserver-users@lists.sourceforge.net> wrote:

Hi,

I noticed that from version 2.22.0 of GeoServe, running the WPS process “gs:RepojectGeometry” with application/json input no longer works correctly while, for example, with version 2.18.2 everything worked correctly.

I tried with several recent versions, up to 2.23.1.

The Java version used in the latest versions is 11 as recommended by the minimum requirements of GeoServer (in version 2.18.2 I used version 8).

If I test the process with WKT input, everything works fine, while if I use application/json, I get the following error:

31 Oct 09:48:28 ERROR [wps.executor] - Process execution failed

org.geoserver.wps.WPSException: Failed to retrieve value for input geometry

at org.geoserver.wps.executor.LazyInputMap.parseInputs(LazyInputMap.java:98)

at org.geoserver.wps.executor.LazyInputMap.get(LazyInputMap.java:50)

at org.geotools.process.factory.AnnotationDrivenProcessFactory$InvokeMethodProcess.buildProcessArguments(AnnotationDrivenProcessFactory.java:748)

at org.geotools.process.factory.AnnotationDrivenProcessFactory$InvokeMethodProcess.execute(AnnotationDrivenProcessFactory.java:628)

at org.geoserver.wps.executor.ProcessStartupFilter$ProcessStartupWrapper.execute(ProcessStartupFilter.java:50)

at org.geoserver.wps.executor.DefaultProcessManager$ProcessCallable.call(DefaultProcessManager.java:222)

at org.geoserver.wps.executor.DefaultProcessManager$ProcessCallable.call(DefaultProcessManager.java:191)

at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)

at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)

at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)

at java.base/java.lang.Thread.run(Thread.java:829)

Caused by: java.lang.NullPointerException

at com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer.deserialize(GeometryDeserializer.java:45)

at com.bedatadriven.jackson.datatype.jts.serialization.GeometryDeserializer.deserialize(GeometryDeserializer.java:33)

at com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323)

at com.fasterxml.jackson.databind.ObjectMapper._readValue(ObjectMapper.java:4650)

at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2831)

at org.geoserver.wps.ppio.GeoJSONPPIO$Geometries.decode(GeoJSONPPIO.java:134)

at org.geoserver.wps.ppio.CDataPPIO.decode(CDataPPIO.java:21)

at org.geoserver.wps.executor.SimpleInputProvider.getValueInternal(SimpleInputProvider.java:81)

at org.geoserver.wps.executor.AbstractInputProvider.getValue(AbstractInputProvider.java:103)

at org.geoserver.wps.executor.LazyInputMap.parseInputs(LazyInputMap.java:90)

The XML to test the functionality is as follows:

<?xml version="1.0" encoding="UTF-8"?><wps:Execute version=“1.0.0” service=“WPS” xmlns:xsi="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">

ows:Identifiergs:ReprojectGeometry</ows:Identifier>

wps:DataInputs

wps:Input

ows:Identifiergeometry</ows:Identifier>

wps:Data

<wps:ComplexData mimeType=“application/json”></wps:ComplexData>

</wps:Data>

</wps:Input>

wps:Input

ows:IdentifiersourceCRS</ows:Identifier>

wps:Data

wps:LiteralDataEPSG:3857</wps:LiteralData>

</wps:Data>

</wps:Input>

wps:Input

ows:IdentifiertargetCRS</ows:Identifier>

wps:Data

wps:LiteralDataEPSG:3003</wps:LiteralData>

</wps:Data>

</wps:Input>

</wps:DataInputs>

wps:ResponseForm

<wps:RawDataOutput mimeType=“application/json”>

ows:Identifierresult</ows:Identifier>

</wps:RawDataOutput>

</wps:ResponseForm>

</wps:Execute>

Daniele Maggiolo

Settore Tecnico

<image001.png>

Via Roma, 5 – 36026, Pojana Maggiore (VI)

Tel. 0444 794127 – www.abitat.it

La presente e-mail ha carattere esclusivamente aziendale. Personale incaricato della ditta Abitat SIT srl potrà accedere al contenuto della e-mail e a eventuali risposte. Non è consentita la diffusione, distribuzione e copia della e-mail da parte di persona diversa dal destinatario. Non permettendo Internet di assicurare l’integrità del presente messaggio si declina ogni responsabilità nell’ipotesi in cui esso venga modificato. Se avete ricevuto questa e-mail per errore vi preghiamo di eliminarla e darne comunicazione al mittente. Grazie per la Vostra collaborazione.


Geoserver-users mailing list

Please make sure you read the following two resources before posting to this list:

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:

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

My guess is that yes, it will. But if you want to control “when”, then see this:
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-fixes,-improvements-and-new-features-in-GeoServer

Cheers
Andrea

···

GeoServer Professional Services from the experts!

Visit http://bit.ly/gs-services-us for more information.

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions Group
phone: +39 0584 962313

fax: +39 0584 1660272

mob: +39 339 8844549

https://www.geosolutionsgroup.com/

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