Re: [Geoserver-users] Freemarker-Teplate: Adding two expressions

2017-10-31 Thread Jody Garnett
Did you get any exceptions in the log to provide a clue? Looking in the
manual it appears the "+" approach is correct:
http://freemarker.org/docs/dgui_template_exp.html#dgui_template_exp_arit

Can you report back when you get a working example so we can add it to our
docs please?

--
Jody Garnett

On 30 October 2017 at 08:22, Uwe Seher  wrote:

> Hello group!
>
> I created a GetFeatureInfo-template for a 2-band raster layer. This works
> fine and i can get the band values and convert them into numbers and write
> the into a table:
>
> ${cell.attributes["dgm"].value?number}
> ${cell.attributes["wd"].value?number}
>
> Now i want to add these two values, this is the part that does not work.
>
> this creates a text output like n1 + n2 (n1,2 are the correct numbers)
> ${cell.attributes["dgm"].value?number} + ${cell.attributes["wd"].value?
> number}
>
> This does not work:
> ${${cell.attributes["dgm"].value?number} + ${cell.attributes["wd"].value?
> number}}
>
> Writing a function sum does also not work with the expressions only with
> fixed numbers like 10or 20:
> <#function sum a b>
>   <#return a + b>
> 
> ...
> ${sum(${cell.attributes["dgm"].value?number},${cell.
> attributes["wd"].value?number})}
>
> Changing the localization does not have an effect:
> <#setting locale="de_DE">
>
> Can someone give me a hint how to add two expressions with freemarker?
>
> Thank you in advance
>
> Uwe
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> 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
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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

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


Re: [Geoserver-users] GEOSERVER geotools rendering

2017-10-31 Thread Jody Garnett
Please check your spatial reference system and bounds for the dataset.

Spatial reference systems have a range in which they are computationally
stable, beyond that (for example near the poles) some spatial reference
systems do not work resulting in issues like you see above.

If your data is "invalid" (ie outside the valid area) consider using
"compute for srs extent" rather than "compute from data" button when
configuring your layer.

--
Jody Garnett

On 27 October 2017 at 07:32, geography79 
wrote:

> Hi all, I’m adding a new datastore type Directory of spatial files
> (shapefiles) , the layers are properly viewed in Geoserver OpenLayers
> windows, but if I see the log I have the following error: 27 Oct 15:28:58
> ERROR [geotools.rendering] - Transformation doesn't convergence.
> org.geotools.referencing.operation.projection.ProjectionException:
> Transformation doesn't convergence. at org.geotools.referencing.
> operation.projection.MapProjection.inv_mlfn(MapProjection.java:1399) at
> org.geotools.referencing.operation.projection.TransverseMercator.
> inverseTransformNormalized(TransverseMercator.java:217) at
> org.geotools.referencing.operation.projection.MapProjection$Inverse.
> transform(MapProjection.java:1050) at org.geotools.referencing.
> operation.projection.MapProjection$Inverse.transform(MapProjection.java:1105)
> at org.geotools.referencing.operation.transform.ConcatenatedTransform.
> transform(ConcatenatedTransform.java:440) at org.geotools.referencing.
> operation.transform.ConcatenatedTransformDirect.transform(
> ConcatenatedTransformDirect.java:80) at org.geotools.geometry.jts.
> Decimator.decimateTransformGeneralize(Decimator.java:479) at
> org.geotools.geometry.jts.Decimator.decimateTransformGeneralize(Decimator.java:283)
> at 
> org.geotools.geometry.jts.Decimator.decimateTransformGeneralize(Decimator.java:241)
> at org.geotools.renderer.lite.StreamingRenderer$RenderableFeature.
> getTransformedShape(StreamingRenderer.java:3123) at
> org.geotools.renderer.lite.StreamingRenderer$RenderableFeature.getShape(StreamingRenderer.java:3066)
> at 
> org.geotools.renderer.lite.StreamingRenderer.processSymbolizers(StreamingRenderer.java:2549)
> at 
> org.geotools.renderer.lite.StreamingRenderer.processFeature(StreamingRenderer.java:2449)
> at 
> org.geotools.renderer.lite.StreamingRenderer.drawPlain(StreamingRenderer.java:2306)
> at 
> org.geotools.renderer.lite.StreamingRenderer.processStylers(StreamingRenderer.java:1927)
> at 
> org.geotools.renderer.lite.StreamingRenderer.paint(StreamingRenderer.java:831)
> at org.geoserver.wms.map.RenderedImageMapOutputFormat.produceMap(
> RenderedImageMapOutputFormat.java:550) at org.geoserver.wms.map.
> RenderedImageMapOutputFormat.produceMap(RenderedImageMapOutputFormat.java:273)
> at org.geoserver.wms.map.RenderedImageMapOutputFormat.produceMap(
> RenderedImageMapOutputFormat.java:143) at org.geoserver.wms.GetMap.
> executeInternal(GetMap.java:623) at 
> org.geoserver.wms.GetMap.run(GetMap.java:279)
> at org.geoserver.wms.GetMap.run(GetMap.java:125) at org.geoserver.wms.
> DefaultWebMapService.getMap(DefaultWebMapService.java:320) at sun.reflect.
> GeneratedMethodAccessor215.invoke(Unknown Source) at sun.reflect.
> DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:498) at
> org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:302)
> at org.springframework.aop.framework.ReflectiveMethodInvocation.
> invokeJoinpoint(ReflectiveMethodInvocation.java:190) at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(
> ReflectiveMethodInvocation.java:157) at org.geoserver.kml.
> WebMapServiceKmlInterceptor.invoke(WebMapServiceKmlInterceptor.java:34)
> at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(
> ReflectiveMethodInvocation.java:179) at org.geoserver.gwc.wms.
> CacheSeedingWebMapService.invoke(CacheSeedingWebMapService.java:62) at
> org.geoserver.gwc.wms.CacheSeedingWebMapService.invoke(
> CacheSeedingWebMapService.java:36) at org.springframework.aop.framework.
> ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
> at 
> org.geoserver.gwc.wms.CachingWebMapService.invoke(CachingWebMapService.java:87)
> at 
> org.geoserver.gwc.wms.CachingWebMapService.invoke(CachingWebMapService.java:55)
> at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(
> ReflectiveMethodInvocation.java:179) at org.geoserver.ows.util.
> RequestObjectLogger.invoke(RequestObjectLogger.java:33) at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(
> ReflectiveMethodInvocation.java:179) at org.springframework.aop.
> framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:208) at
> com.sun.proxy.$Proxy112.getMap(Unknown Source) at sun.reflect.
> GeneratedMethodAccessor214.invoke(Unknown Source) at sun.reflect.
> DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>

Re: [Geoserver-users] GeoWebCache endpoints raise 404 with an old data directory

2017-10-31 Thread Andrea Aime
On Tue, Oct 31, 2017 at 7:50 PM, Paolo Corti  wrote:

> Hi Andrea
> thanks a lot.
> My problems are slightly different to what is described in GEOS-8312
> and GEOS-8313. So you are saying that they are anyway connected with
> the same issues?
>

They sure sound caused by the same problem, but I might be wrong


> Is there any exact forecast for the date when 2.12.1 will be released?
>

Around November 18th, but I would advise you try out a nightly build before
that:

https://build.geoserver.org/geoserver/2.12.x/

Cheers
Andrea

-- 

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

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended solely for
the attention and use of the named addressee(s) and may be confidential or
proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, reproduction,
copying, distribution, or either dissemination, either whole or partial, is
strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, accuracy or
completeness of sent messages and accepts no responsibility  for changes
made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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

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


Re: [Geoserver-users] GeoWebCache endpoints raise 404 with an old data directory

2017-10-31 Thread Paolo Corti
Hi Andrea
thanks a lot.
My problems are slightly different to what is described in GEOS-8312
and GEOS-8313. So you are saying that they are anyway connected with
the same issues?
Is there any exact forecast for the date when 2.12.1 will be released?
thanks a lot for all the great work
p

On Tue, Oct 31, 2017 at 9:16 AM, Andrea Aime
 wrote:
> Hi Paolo,
> those are unfortunately know, although apparently fixed a few days ago:
>
> http://osgeo-org.1560.x6.nabble.com/2-12-0-released-with-known-regressions-td5340181.html
>
> Cheers
> Andrea
>
>
> On Mon, Oct 30, 2017 at 11:49 PM, Paolo Corti  wrote:
>>
>> Hi all
>>
>> I migrated one data directory from a very old version of GeoServer
>> (2.2) to 2.12.
>> Everything seems to work properly but GeoWebCache.
>>
>> I had errors complaining that the cache is out of sync, so I decided
>> to regenerate it with one script using the GeoWebCache REST API.
>>
>> While I can successfully generate the cache for one layer using the
>> "Tile Caching" section in "Edit Layers" in GeoServer admin site, I
>> cannot access any GWC endpoint.
>> For example going to the "Embedded GWC Home Page" I am getting a 404
>> (and "No mapping found for HTTP request with URI [/geoserver/gwc] in
>> DispatcherServlet with name 'dispatcher'" in the log).
>>
>> The REST endpoint (/geoserver/gwc/rest) is raising the same error as well.
>>
>> I am wondering if there is a way to fix this.
>> Thanks in advance for helping
>>
>> p
>>
>> --
>> Paolo Corti
>> Geospatial software developer
>> web: http://www.paolocorti.net
>> twitter: @capooti
>> skype: capooti
>>
>>
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> ___
>> 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
>>
>> 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
>
> AVVERTENZE AI SENSI DEL D.Lgs. 196/2003
>
> Le informazioni contenute in questo messaggio di posta elettronica e/o nel/i
> file/s allegato/i sono da considerarsi strettamente riservate. Il loro
> utilizzo è consentito esclusivamente al destinatario del messaggio, per le
> finalità indicate nel messaggio stesso. Qualora riceviate questo messaggio
> senza esserne il destinatario, Vi preghiamo cortesemente di darcene notizia
> via e-mail e di procedere alla distruzione del messaggio stesso,
> cancellandolo dal Vostro sistema. Conservare il messaggio stesso, divulgarlo
> anche in parte, distribuirlo ad altri soggetti, copiarlo, od utilizzarlo per
> finalità diverse, costituisce comportamento contrario ai principi dettati
> dal D.Lgs. 196/2003.
>
> The information in this message and/or attachments, is intended solely for
> the attention and use of the named addressee(s) and may be confidential or
> proprietary in nature or covered by the provisions of privacy act
> (Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
> Code).Any use not in accord with its purpose, any disclosure, reproduction,
> copying, distribution, or either dissemination, either whole or partial, is
> strictly forbidden except previous formal approval of the named
> addressee(s). If you are not the intended recipient, please contact
> immediately the sender by telephone, fax or e-mail and delete the
> information in this message that has been received in error. The sender does
> not give any warranty or accept liability as the content, accuracy or
> completeness of sent messages and accepts no responsibility  for changes
> made after they were sent or for other risks which arise as a result of
> e-mail transmission, viruses, etc.
>
>



-- 
Paolo Corti
Geospatial software developer
web: http://www.paolocorti.net
twitter: @capooti
skype: capooti

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
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

Re: [Geoserver-users] WFS nesting

2017-10-31 Thread Gavin Medley
Hi Tomas,

As Ben alluded to, I think you should first make sure that your goal is GML
compliant. That means it follows the Object-Property-Value model (or GML
striping rule). That is, GML compliant XML always consists of an Object,
which contains Properties. An object may have 0 to n properties “nested” on
the same level, like so:


  
  
  ...


Each property must contain at most 1 value in GML. I believe this is where
your schema may violate the model. The value of a property may be simple,
e.g. foovalue or the value may itself be an object,
like:

...
  

  
  ...

  
...

In your context,  would be an object and  would be a
property (potentially one of many). However, that property cannot contain
 *and*  as values (objects) since a property may only have a
single value. One way around this could be to skip the 
property and use  and  as properties of . Another
would be to create a  element so that your output
would look like:

 
   
 
   
   

  


Any solution will require changing your schema to be GML compliant since
that is the root of the problem.

HTH

-Gavin
​

On Tue, Oct 31, 2017 at 4:48 AM, Tomas L.  wrote:

> Hi, thanks for reply. Im so sorry, but i do not understand, what exactly
> you mean.
> How i wrote in my first question, im able to chain features exactly as you
> described:
>
> 
> 
> 
> content for email 1
> 
> 
> content for email 2
> 
> [...]
>
> I attached all my files as a ZIP, so you can see the output in
> "___output.xml".
>
> But i would like to "nest" emails/webs to special elements, so the output
> should be like this:
>
> 
> 
>.. person info
><-  one more "nested" element
>  <-  another "nested" element
>   
> ... email 1
>   
> 
>  <- ... another "nested"" element
>   
>  web 1
>   
> 
>   
> ..
> 
>
> I suppose it could be set in schema (xsd) files somehow, but i do not know
> how exactly it should be done.
> So i would really appreciate any help.
> Thanks a lot,
> Tomas
>
>
> *Sent:* Monday, October 30, 2017 at 9:24 PM
> *From:* "Ben Caradoc-Davies" 
> *To:* "Tomas L." 
> *Cc:* "Nuno Oliveira" ,
> geoserver-users@lists.sourceforge.net
> *Subject:* Re: [Geoserver-users] WFS nesting
> Tomas,
>
> for app-schema feature chaining to work properly, your XML schema must
> conform to the GML object/property model ("striping"). The encoded XML
> will be TypeName/propertyName/TypeName/propertyName/... . For example,
> with a multivalued "email" property:
>
> 
> 
> 
> content for email 1
> 
> 
> content for email 2
> 
> [...]
>
> This is required by GML. The pattern is as for GeometryPropertyType and
> similar. The reason is that this allows naming of properties and
> encoding of their concrete type (polymorphism). If your schema follows
> these rules, you will be able to use feature chaining to encode
> multivalued properties.
>
> Kind regards,
> Ben.
>
> On 30/10/17 23:50, Tomas L. wrote:
> > Thanks for answer. I know about app schema, im using it. Im able to join
> > elements through FEATURE_LINK, but have no luck with nesting of joined
> elements.
> > BR,
> > Tomas.
> > *Sent:* Monday, October 30, 2017 at 10:54 AM
> > *From:* "Nuno Oliveira" 
> > *To:* geoserver-users@lists.sourceforge.net
> > *Subject:* Re: [Geoserver-users] WFS nesting
> > Hi,
> >
> > The only way I know of achieving this in GeoServer is using App-Schema:
> > http://docs.geoserver.org/stable/en/user/data/app-schema/index.html
> >
> > This extension will allow you mappings between your database and a
> specific GML
> > based XML schema.
> >
> > Note that App-Schema is an extension to GeoServer and needs to be
> downloaded and
> > installed:
> > http://geoserver.org/release/stable/
> >
> > Regards,
> >
> > Nuno Oliveira
> >
> > On 10/29/2017 11:36 PM, geseus wrote:
> > > files.zip 
> > >
> > > Hi,
> > >
> > > I'm trying to do wfs with nested elements, but without success.
> > > I have 3 postgres tables: person, email, web.
> > > I'm able to join them, so output is like:
> > >
> > > 
> > > 
> > > .. person elements
> > >
> > > email 1 elements
> > >
> > >
> > > email 2 elements
> > >
> > > ..
> > > 
> > > web 1 elements
> > > 
> > > 
> > > web 2 elements
> > > 
> > >
> > > ...
> > >
> > > But I would like to have web and email info nested like this:
> > > 
> > > 
> > > .. person elements
> > >
> >  HOW TO ADD THIS ELEMENT?
> > > 
> > >
> >  AND THIS ELEMENT?
> > > 
> > >
> > > email 1 elements
> > >
> > >
> > > email 2 elements
> > >
> > > 
> > > 
> > > 
> > > web 1 elements
> > > 
> > > 
> > >
> > > I do not know, how to create schema files and feature_link for that.
> > >
> > > And another question, i have three xml files, which contain the same
> > > datastores with exactly the same connection to database.
> > > Is it possible to define connection/datastore otside and include it
> somehow
> > > (so i have connection defined only once).
> > > An

Re: [Geoserver-users] Geoserver Styling Error (CSS and YSLD)

2017-10-31 Thread Kris Johnson
Hi Andrea,

That fixed it!!! Adding this line to the dockerfile did the trick:
RUN sed -i 's/^assistive_technologies=/#&/'
/etc/java-8-openjdk/accessibility.properties

Thank you very very much for your help.

On Tue, Oct 31, 2017 at 9:00 AM, Andrea Aime 
wrote:

> Hi,
> see also here:
> https://askubuntu.com/questions/695560/assistive-
> technology-not-found-error-while-building-aprof-plot
> https://solveme.wordpress.com/2017/07/24/java-awt-awterror-
> assistive-technology-not-found-org-gnome-accessibility-
> atkwrapper-when-running-jasper-reports/
>
> Cheers
> Andrea
>
>
> On Tue, Oct 31, 2017 at 2:52 PM, Kris Johnson  wrote:
>
>> Hi Andrea,
>>
>> Thank you again for your using your expertise to look into this.
>>
>> The geoserver instance is actually implemented in a docker container that
>> I forked from this repo: https://github.com/oscarfonts/docker-geoserver
>> It appears that  "-Djava.awt.headless=true" is added to an environment
>> variable CATALINA_OPTS and then the server is started with "catalina.sh
>> run": https://github.com/oscarfonts/docker-geoserver/blob/8f
>> e256b22bd36a584e20313b55c251bee1b1ff45/2.11.3/Dockerfile#L61
>>
>> I'll try recreating the container again and see if that changes anything.
>>
>> On Tue, Oct 31, 2017 at 6:34 AM, Andrea Aime <
>> andrea.a...@geo-solutions.it> wrote:
>>
>>> Hi,
>>> the source of the error seems to be here:
>>>
>>> Request: getServiceInfo
>>> 2017-10-30 12:58:12,128 ERROR [geotools.rendering] - Assistive
>>> Technology not found: org.GNOME.Accessibility.AtkWrapper
>>> java.awt.AWTError: Assistive Technology not found:
>>> org.GNOME.Accessibility.AtkWrapper
>>> at java.awt.Toolkit.loadAssistiveTechnologies(Toolkit.java:807)
>>> at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:886)
>>> at org.apache.batik.bridge.CursorManager.(CursorManager
>>> .java:102)
>>> at org.apache.batik.bridge.BridgeContext.(BridgeContext.java:1154)
>>> at org.apache.batik.bridge.BridgeContext.(BridgeContext.java:301)
>>> at org.geotools.renderer.style.SVGGraphicFactory$RenderableSVG.
>>> getGraphicNode(SVGGraphicFactory.java:401)
>>> at org.geotools.renderer.style.SVGGraphicFactory$RenderableSVG.
>>> (SVGGraphicFactory.java:345)
>>> at org.geotools.renderer.style.SVGGraphicFactory.getIcon(SVGGra
>>> phicFactory.java:170)
>>> at org.geotools.renderer.lite.MetaBufferEstimator.visit(MetaBuf
>>> ferEstimator.java:357)
>>>
>>> Is your GeoServer running in headless mode? If so add
>>> "-Djava.awt.headless=true" to the command line starting
>>> up your Tomcat (e.g., JAVA_OPTS for example).
>>>
>>> Cheers
>>> Andrea
>>>
>>>
>>> On Mon, Oct 30, 2017 at 2:01 PM, Kris Johnson 
>>> wrote:
>>>
 ​Hello Andrea,​

 Thank you for your response.

 I will attach the whole log file downloaded from geoserver web admin.
 The latest entries to the file were produced by going to the "layer
 preview" tab under the style in question. So, in essence, they are produced
 when a WMS request is being made that involves the style producing this
 error.

 I don't know what could be causing the batik-bridge error. Any
 assistance you can provide is appreciated.


 On Mon, Oct 30, 2017 at 5:26 AM, Andrea Aime <
 andrea.a...@geo-solutions.it> wrote:

> Hi Kris,
> it seems that you don't have batik-bridge in your classpath (in
> geoserver/WEB-INF/lib) for some reason, but
> I don't know why...
>
> Also, are you sure the stack trace shared on stack overflow is
> complete? I have the impression it
> might be missing one or more "caused by" elements (but might be wrong).
>
> Cheers
> Andrea
>
>
> On Thu, Oct 26, 2017 at 6:36 PM, Kris Johnson 
> wrote:
>
>> I am attempting to style a point layer using a CSS style in geoserver.
>> Here is the style definition:
>>
>> /* @title red point */* {
>>   mark: 
>> url(https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg);
>>   mark-mime: "image/svg";}
>> [@scale < 200] {
>>   mark-size: 30;}
>> [@scale > 200] [@scale < 400] {
>>   mark-size: 15;}
>> [@scale > 400] {
>>   mark-size: 7.5;}
>>
>> I've attached (what I believe to be) the pertinent portion of this log 
>> file for this error.
>>
>> I believe CSS styling was working at one point, so I'm inclined to think 
>> it's an issue with my syntax.
>>
>> Any assistance with this issue would be appreciated. Thanks.
>>
>> Cross-posted here as well: https://stackoverflow.com/q/46959440/6072959
>>
>>
>> --
>> Kris Johnson
>> Natural Resources Research Institute
>> 5013 Miller Trunk Highway, Duluth, MN 55811
>> 
>> p: 218.788.2767 <(218)%20788-2767>
>> www.nrri.umn.edu
>>
>>
>> 

Re: [Geoserver-users] Geoserver Styling Error (CSS and YSLD)

2017-10-31 Thread Andrea Aime
Hi,
see also here:
https://askubuntu.com/questions/695560/assistive-technology-not-found-error-while-building-aprof-plot
https://solveme.wordpress.com/2017/07/24/java-awt-awterror-assistive-technology-not-found-org-gnome-accessibility-atkwrapper-when-running-jasper-reports/

Cheers
Andrea


On Tue, Oct 31, 2017 at 2:52 PM, Kris Johnson  wrote:

> Hi Andrea,
>
> Thank you again for your using your expertise to look into this.
>
> The geoserver instance is actually implemented in a docker container that
> I forked from this repo: https://github.com/oscarfonts/docker-geoserver
> It appears that  "-Djava.awt.headless=true" is added to an environment
> variable CATALINA_OPTS and then the server is started with "catalina.sh
> run": https://github.com/oscarfonts/docker-geoserver/blob/
> 8fe256b22bd36a584e20313b55c251bee1b1ff45/2.11.3/Dockerfile#L61
>
> I'll try recreating the container again and see if that changes anything.
>
> On Tue, Oct 31, 2017 at 6:34 AM, Andrea Aime  > wrote:
>
>> Hi,
>> the source of the error seems to be here:
>>
>> Request: getServiceInfo
>> 2017-10-30 12:58:12,128 ERROR [geotools.rendering] - Assistive Technology
>> not found: org.GNOME.Accessibility.AtkWrapper
>> java.awt.AWTError: Assistive Technology not found:
>> org.GNOME.Accessibility.AtkWrapper
>> at java.awt.Toolkit.loadAssistiveTechnologies(Toolkit.java:807)
>> at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:886)
>> at org.apache.batik.bridge.CursorManager.(CursorManager.java:102)
>> at org.apache.batik.bridge.BridgeContext.(BridgeContext.java:1154)
>> at org.apache.batik.bridge.BridgeContext.(BridgeContext.java:301)
>> at org.geotools.renderer.style.SVGGraphicFactory$RenderableSVG.
>> getGraphicNode(SVGGraphicFactory.java:401)
>> at org.geotools.renderer.style.SVGGraphicFactory$RenderableSVG.
>> (SVGGraphicFactory.java:345)
>> at org.geotools.renderer.style.SVGGraphicFactory.getIcon(SVGGra
>> phicFactory.java:170)
>> at org.geotools.renderer.lite.MetaBufferEstimator.visit(MetaBuf
>> ferEstimator.java:357)
>>
>> Is your GeoServer running in headless mode? If so add
>> "-Djava.awt.headless=true" to the command line starting
>> up your Tomcat (e.g., JAVA_OPTS for example).
>>
>> Cheers
>> Andrea
>>
>>
>> On Mon, Oct 30, 2017 at 2:01 PM, Kris Johnson  wrote:
>>
>>> ​Hello Andrea,​
>>>
>>> Thank you for your response.
>>>
>>> I will attach the whole log file downloaded from geoserver web admin.
>>> The latest entries to the file were produced by going to the "layer
>>> preview" tab under the style in question. So, in essence, they are produced
>>> when a WMS request is being made that involves the style producing this
>>> error.
>>>
>>> I don't know what could be causing the batik-bridge error. Any
>>> assistance you can provide is appreciated.
>>>
>>>
>>> On Mon, Oct 30, 2017 at 5:26 AM, Andrea Aime <
>>> andrea.a...@geo-solutions.it> wrote:
>>>
 Hi Kris,
 it seems that you don't have batik-bridge in your classpath (in
 geoserver/WEB-INF/lib) for some reason, but
 I don't know why...

 Also, are you sure the stack trace shared on stack overflow is
 complete? I have the impression it
 might be missing one or more "caused by" elements (but might be wrong).

 Cheers
 Andrea


 On Thu, Oct 26, 2017 at 6:36 PM, Kris Johnson 
 wrote:

> I am attempting to style a point layer using a CSS style in geoserver.
> Here is the style definition:
>
> /* @title red point */* {
>   mark: 
> url(https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg);
>   mark-mime: "image/svg";}
> [@scale < 200] {
>   mark-size: 30;}
> [@scale > 200] [@scale < 400] {
>   mark-size: 15;}
> [@scale > 400] {
>   mark-size: 7.5;}
>
> I've attached (what I believe to be) the pertinent portion of this log 
> file for this error.
>
> I believe CSS styling was working at one point, so I'm inclined to think 
> it's an issue with my syntax.
>
> Any assistance with this issue would be appreciated. Thanks.
>
> Cross-posted here as well: https://stackoverflow.com/q/46959440/6072959
>
>
> --
> Kris Johnson
> Natural Resources Research Institute
> 5013 Miller Trunk Highway, Duluth, MN 55811
> 
> p: 218.788.2767 <(218)%20788-2767>
> www.nrri.umn.edu
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> 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.ianturt

Re: [Geoserver-users] Geoserver Styling Error (CSS and YSLD)

2017-10-31 Thread Kris Johnson
Hi Andrea,

Thank you again for your using your expertise to look into this.

The geoserver instance is actually implemented in a docker container that I
forked from this repo: https://github.com/oscarfonts/docker-geoserver
It appears that  "-Djava.awt.headless=true" is added to an environment
variable CATALINA_OPTS and then the server is started with "catalina.sh
run":
https://github.com/oscarfonts/docker-geoserver/blob/8fe256b22bd36a584e20313b55c251bee1b1ff45/2.11.3/Dockerfile#L61

I'll try recreating the container again and see if that changes anything.

On Tue, Oct 31, 2017 at 6:34 AM, Andrea Aime 
wrote:

> Hi,
> the source of the error seems to be here:
>
> Request: getServiceInfo
> 2017-10-30 12:58:12,128 ERROR [geotools.rendering] - Assistive Technology
> not found: org.GNOME.Accessibility.AtkWrapper
> java.awt.AWTError: Assistive Technology not found: org.GNOME.Accessibility.
> AtkWrapper
> at java.awt.Toolkit.loadAssistiveTechnologies(Toolkit.java:807)
> at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:886)
> at org.apache.batik.bridge.CursorManager.(CursorManager.java:102)
> at org.apache.batik.bridge.BridgeContext.(BridgeContext.java:1154)
> at org.apache.batik.bridge.BridgeContext.(BridgeContext.java:301)
> at org.geotools.renderer.style.SVGGraphicFactory$
> RenderableSVG.getGraphicNode(SVGGraphicFactory.java:401)
> at org.geotools.renderer.style.SVGGraphicFactory$RenderableSVG.(
> SVGGraphicFactory.java:345)
> at org.geotools.renderer.style.SVGGraphicFactory.getIcon(
> SVGGraphicFactory.java:170)
> at org.geotools.renderer.lite.MetaBufferEstimator.visit(
> MetaBufferEstimator.java:357)
>
> Is your GeoServer running in headless mode? If so add
> "-Djava.awt.headless=true" to the command line starting
> up your Tomcat (e.g., JAVA_OPTS for example).
>
> Cheers
> Andrea
>
>
> On Mon, Oct 30, 2017 at 2:01 PM, Kris Johnson  wrote:
>
>> ​Hello Andrea,​
>>
>> Thank you for your response.
>>
>> I will attach the whole log file downloaded from geoserver web admin.
>> The latest entries to the file were produced by going to the "layer
>> preview" tab under the style in question. So, in essence, they are produced
>> when a WMS request is being made that involves the style producing this
>> error.
>>
>> I don't know what could be causing the batik-bridge error. Any assistance
>> you can provide is appreciated.
>>
>>
>> On Mon, Oct 30, 2017 at 5:26 AM, Andrea Aime <
>> andrea.a...@geo-solutions.it> wrote:
>>
>>> Hi Kris,
>>> it seems that you don't have batik-bridge in your classpath (in
>>> geoserver/WEB-INF/lib) for some reason, but
>>> I don't know why...
>>>
>>> Also, are you sure the stack trace shared on stack overflow is complete?
>>> I have the impression it
>>> might be missing one or more "caused by" elements (but might be wrong).
>>>
>>> Cheers
>>> Andrea
>>>
>>>
>>> On Thu, Oct 26, 2017 at 6:36 PM, Kris Johnson 
>>> wrote:
>>>
 I am attempting to style a point layer using a CSS style in geoserver.
 Here is the style definition:

 /* @title red point */* {
   mark: 
 url(https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg);
   mark-mime: "image/svg";}
 [@scale < 200] {
   mark-size: 30;}
 [@scale > 200] [@scale < 400] {
   mark-size: 15;}
 [@scale > 400] {
   mark-size: 7.5;}

 I've attached (what I believe to be) the pertinent portion of this log 
 file for this error.

 I believe CSS styling was working at one point, so I'm inclined to think 
 it's an issue with my syntax.

 Any assistance with this issue would be appreciated. Thanks.

 Cross-posted here as well: https://stackoverflow.com/q/46959440/6072959


 --
 Kris Johnson
 Natural Resources Research Institute
 5013 Miller Trunk Highway, Duluth, MN 55811
 
 p: 218.788.2767 <(218)%20788-2767>
 www.nrri.umn.edu


 
 --
 Check out the vibrant tech community on one of the world's most
 engaging tech sites, Slashdot.org! http://sdm.link/slashdot
 ___
 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

 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
>>> Technic

Re: [Geoserver-users] GeoWebCache endpoints raise 404 with an old data directory

2017-10-31 Thread Andrea Aime
Hi Paolo,
those are unfortunately know, although apparently fixed a few days ago:

http://osgeo-org.1560.x6.nabble.com/2-12-0-released-with-known-regressions-td5340181.html

Cheers
Andrea


On Mon, Oct 30, 2017 at 11:49 PM, Paolo Corti  wrote:

> Hi all
>
> I migrated one data directory from a very old version of GeoServer
> (2.2) to 2.12.
> Everything seems to work properly but GeoWebCache.
>
> I had errors complaining that the cache is out of sync, so I decided
> to regenerate it with one script using the GeoWebCache REST API.
>
> While I can successfully generate the cache for one layer using the
> "Tile Caching" section in "Edit Layers" in GeoServer admin site, I
> cannot access any GWC endpoint.
> For example going to the "Embedded GWC Home Page" I am getting a 404
> (and "No mapping found for HTTP request with URI [/geoserver/gwc] in
> DispatcherServlet with name 'dispatcher'" in the log).
>
> The REST endpoint (/geoserver/gwc/rest) is raising the same error as well.
>
> I am wondering if there is a way to fix this.
> Thanks in advance for helping
>
> p
>
> --
> Paolo Corti
> Geospatial software developer
> web: http://www.paolocorti.net
> twitter: @capooti
> skype: capooti
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> 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
>
> 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

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended solely for
the attention and use of the named addressee(s) and may be confidential or
proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, reproduction,
copying, distribution, or either dissemination, either whole or partial, is
strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, accuracy or
completeness of sent messages and accepts no responsibility  for changes
made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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

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


[Geoserver-users] Freemarker-Teplate: Adding two expressions

2017-10-31 Thread Uwe Seher
Hello group!

I created a GetFeatureInfo-template for a 2-band raster layer. This works
fine and i can get the band values and convert them into numbers and write
the into a table:

${cell.attributes["dgm"].value?number}
${cell.attributes["wd"].value?number}

Now i want to add these two values, this is the part that does not work.

this creates a text output like n1 + n2 (n1,2 are the correct numbers)
${cell.attributes["dgm"].value?number} +
${cell.attributes["wd"].value?number}

This does not work:
${${cell.attributes["dgm"].value?number} +
${cell.attributes["wd"].value?number}}

Writing a function sum does also not work with the expressions only with
fixed numbers like 10or 20:
<#function sum a b>
  <#return a + b>

...
${sum(${cell.attributes["dgm"].value?number},${cell.attributes["wd"].value?number})}

Changing the localization does not have an effect:
<#setting locale="de_DE">

Can someone give me a hint how to add two expressions with freemarker?

Thank you in advance

Uwe
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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

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


[Geoserver-users] GeoWebCache endpoints raise 404 with an old data directory

2017-10-31 Thread Paolo Corti
Hi all

I migrated one data directory from a very old version of GeoServer
(2.2) to 2.12.
Everything seems to work properly but GeoWebCache.

I had errors complaining that the cache is out of sync, so I decided
to regenerate it with one script using the GeoWebCache REST API.

While I can successfully generate the cache for one layer using the
"Tile Caching" section in "Edit Layers" in GeoServer admin site, I
cannot access any GWC endpoint.
For example going to the "Embedded GWC Home Page" I am getting a 404
(and "No mapping found for HTTP request with URI [/geoserver/gwc] in
DispatcherServlet with name 'dispatcher'" in the log).

The REST endpoint (/geoserver/gwc/rest) is raising the same error as well.

I am wondering if there is a way to fix this.
Thanks in advance for helping

p

-- 
Paolo Corti
Geospatial software developer
web: http://www.paolocorti.net
twitter: @capooti
skype: capooti

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
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

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


Re: [Geoserver-users] Geoserver Styling Error (CSS and YSLD)

2017-10-31 Thread Andrea Aime
Hi,
the source of the error seems to be here:

Request: getServiceInfo
2017-10-30 12:58:12,128 ERROR [geotools.rendering] - Assistive Technology
not found: org.GNOME.Accessibility.AtkWrapper
java.awt.AWTError: Assistive Technology not found:
org.GNOME.Accessibility.AtkWrapper
at java.awt.Toolkit.loadAssistiveTechnologies(Toolkit.java:807)
at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:886)
at org.apache.batik.bridge.CursorManager.(CursorManager.java:102)
at org.apache.batik.bridge.BridgeContext.(BridgeContext.java:1154)
at org.apache.batik.bridge.BridgeContext.(BridgeContext.java:301)
at
org.geotools.renderer.style.SVGGraphicFactory$RenderableSVG.getGraphicNode(SVGGraphicFactory.java:401)
at
org.geotools.renderer.style.SVGGraphicFactory$RenderableSVG.(SVGGraphicFactory.java:345)
at
org.geotools.renderer.style.SVGGraphicFactory.getIcon(SVGGraphicFactory.java:170)
at
org.geotools.renderer.lite.MetaBufferEstimator.visit(MetaBufferEstimator.java:357)

Is your GeoServer running in headless mode? If so add
"-Djava.awt.headless=true" to the command line starting
up your Tomcat (e.g., JAVA_OPTS for example).

Cheers
Andrea


On Mon, Oct 30, 2017 at 2:01 PM, Kris Johnson  wrote:

> ​Hello Andrea,​
>
> Thank you for your response.
>
> I will attach the whole log file downloaded from geoserver web admin.
> The latest entries to the file were produced by going to the "layer
> preview" tab under the style in question. So, in essence, they are produced
> when a WMS request is being made that involves the style producing this
> error.
>
> I don't know what could be causing the batik-bridge error. Any assistance
> you can provide is appreciated.
>
>
> On Mon, Oct 30, 2017 at 5:26 AM, Andrea Aime  > wrote:
>
>> Hi Kris,
>> it seems that you don't have batik-bridge in your classpath (in
>> geoserver/WEB-INF/lib) for some reason, but
>> I don't know why...
>>
>> Also, are you sure the stack trace shared on stack overflow is complete?
>> I have the impression it
>> might be missing one or more "caused by" elements (but might be wrong).
>>
>> Cheers
>> Andrea
>>
>>
>> On Thu, Oct 26, 2017 at 6:36 PM, Kris Johnson  wrote:
>>
>>> I am attempting to style a point layer using a CSS style in geoserver.
>>> Here is the style definition:
>>>
>>> /* @title red point */* {
>>>   mark: 
>>> url(https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg);
>>>   mark-mime: "image/svg";}
>>> [@scale < 200] {
>>>   mark-size: 30;}
>>> [@scale > 200] [@scale < 400] {
>>>   mark-size: 15;}
>>> [@scale > 400] {
>>>   mark-size: 7.5;}
>>>
>>> I've attached (what I believe to be) the pertinent portion of this log file 
>>> for this error.
>>>
>>> I believe CSS styling was working at one point, so I'm inclined to think 
>>> it's an issue with my syntax.
>>>
>>> Any assistance with this issue would be appreciated. Thanks.
>>>
>>> Cross-posted here as well: https://stackoverflow.com/q/46959440/6072959
>>>
>>>
>>> --
>>> Kris Johnson
>>> Natural Resources Research Institute
>>> 5013 Miller Trunk Highway, Duluth, MN 55811
>>> 
>>> p: 218.788.2767 <(218)%20788-2767>
>>> www.nrri.umn.edu
>>>
>>>
>>> 
>>> --
>>> Check out the vibrant tech community on one of the world's most
>>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>>> ___
>>> 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
>>>
>>> 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 <+39%200584%20962313>
>> fax: +39 0584 1660272 <+39%200584%20166%200272>
>> mob: +39  339 8844549 <+39%20339%20884%204549>
>>
>> http://www.geo-solutions.it
>> http://twitter.com/geosolutions_it
>>
>> AVVERTENZE AI SENSI DEL D.Lgs. 196/2003
>>
>> Le informazioni contenute in questo messaggio di posta elettronica e/o
>> nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
>> loro utilizzo è consentito esclusivamente al destinatario del messaggio,
>> per le finalità indicate nel messagg

Re: [Geoserver-users] WFS nesting

2017-10-31 Thread Tomas L.


Hi, thanks for reply. Im so sorry, but i do not understand, what exactly you mean.
How i wrote in my first question, im able to chain features exactly as you described:

 




content for email 1


content for email 2

[...]

 

I attached all my files as a ZIP, so you can see the output in "___output.xml".

 

But i would like to "nest" emails/webs to special elements, so the output should be like this:

 



   .. person info
   <-  one more "nested" element
     <-  another "nested" element
  
    ... email 1
  
    
     <- ... another "nested"" element
  
     web 1
  
    
  
..



I suppose it could be set in schema (xsd) files somehow, but i do not know how exactly it should be done.
So i would really appreciate any help.

Thanks a lot,
Tomas
 

 

Sent: Monday, October 30, 2017 at 9:24 PM
From: "Ben Caradoc-Davies" 
To: "Tomas L." 
Cc: "Nuno Oliveira" , geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] WFS nesting

Tomas,

for app-schema feature chaining to work properly, your XML schema must
conform to the GML object/property model ("striping"). The encoded XML
will be TypeName/propertyName/TypeName/propertyName/... . For example,
with a multivalued "email" property:




content for email 1


content for email 2

[...]

This is required by GML. The pattern is as for GeometryPropertyType and
similar. The reason is that this allows naming of properties and
encoding of their concrete type (polymorphism). If your schema follows
these rules, you will be able to use feature chaining to encode
multivalued properties.

Kind regards,
Ben.

On 30/10/17 23:50, Tomas L. wrote:
> Thanks for answer. I know about app schema, im using it. Im able to join
> elements through FEATURE_LINK, but have no luck with nesting of joined elements.
> BR,
> Tomas.
> *Sent:* Monday, October 30, 2017 at 10:54 AM
> *From:* "Nuno Oliveira" 
> *To:* geoserver-users@lists.sourceforge.net
> *Subject:* Re: [Geoserver-users] WFS nesting
> Hi,
>
> The only way I know of achieving this in GeoServer is using App-Schema:
> http://docs.geoserver.org/stable/en/user/data/app-schema/index.html
>
> This extension will allow you mappings between your database and a specific GML
> based XML schema.
>
> Note that App-Schema is an extension to GeoServer and needs to be downloaded and
> installed:
> http://geoserver.org/release/stable/
>
> Regards,
>
> Nuno Oliveira
>
> On 10/29/2017 11:36 PM, geseus wrote:
> > files.zip 
> >
> > Hi,
> >
> > I'm trying to do wfs with nested elements, but without success.
> > I have 3 postgres tables: person, email, web.
> > I'm able to join them, so output is like:
> >
> > 
> > 
> > .. person elements
> >
> > email 1 elements
> >
> >
> > email 2 elements
> >
> > ..
> > 
> > web 1 elements
> > 
> > 
> > web 2 elements
> > 
> >
> > ...
> >
> > But I would like to have web and email info nested like this:
> > 
> > 
> > .. person elements
> >
>  HOW TO ADD THIS ELEMENT?
> > 
> >
>  AND THIS ELEMENT?
> > 
> >
> > email 1 elements
> >
> >
> > email 2 elements
> >
> > 
> > 
> > 
> > web 1 elements
> > 
> > 
> >
> > I do not know, how to create schema files and feature_link for that.
> >
> > And another question, i have three xml files, which contain the same
> > datastores with exactly the same connection to database.
> > Is it possible to define connection/datastore otside and include it somehow
> > (so i have connection defined only once).
> > And is it posible to crypt the password like this?
> > crypt1:SNtjcptw+CrnShpSnfw6hPBxUpGhWbIs
> > (this doesnt work for me)
> >
> > All files im using are (hopefully) attached as a zip.
> > Thanks a lot for any advice.
> > Tomas
> >
> >
> >
> > --
> > Sent from: http://osgeo-org.1560.x6.nabble.com/GeoServer-User-f3786390.html
> >
> > --
> > Check out the vibrant tech community on one of the world's most
> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > ___
> > 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
> >
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
>
> --
> Regards,
> Nuno Oliveira
> ==
> GeoServer Professional Services from the experts! Visit http://goo.gl/it488V for
> more information.
> ==
>
> Nuno Miguel Carvalho Oliveira
> @nmcoliveira
> Software Engineer
>
> GeoSolutions S.A.S.
> Via di Montramito 3/A
> 55054 Massarosa (LU)
> Italy
> phone: +39 0584 962313
> fax: +39 0584 1660272
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> -

Re: [Geoserver-users] MapProjection doesn't converge

2017-10-31 Thread Andrea Aime
On Tue, Oct 31, 2017 at 10:17 AM, Matteo Cusmai 
wrote:

> Hi all,
> I am trying to check my data against epsg 25832.
> Following the steps:
>
>1. get bounds of epsg:25832 in lon, lat (https://epsg.io/25832) -->
>(-16.1 32.88) (39.65 84.17)
>
> I'm quite surprised to see such an extension... its limit is 25 degrees
west of the central meridian and
a whopping 55 degrees large, while a UTM is supposed to be only 6 degrees
large, 3 degrees on
each side.

This seems to be a bug in epsg.io though, if I check an official reference
like https://www.epsg-registry.org/
the "area of use" is reported to be what I expected it to be (too bad the
blasted web site does not allow
for a direct link, but see this screenshot:

[image: Inline image 1]

That said, the UTM math should be somewhat stable even so far away from the
central meridian.
I would like to see some sample data that can be used to reproduce the
issue (in a ticket).

Cheers
Andrea

-- 

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

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended solely for
the attention and use of the named addressee(s) and may be confidential or
proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, reproduction,
copying, distribution, or either dissemination, either whole or partial, is
strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give any warranty or accept liability as the content, accuracy or
completeness of sent messages and accepts no responsibility  for changes
made after they were sent or for other risks which arise as a result of
e-mail transmission, viruses, etc.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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

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


Re: [Geoserver-users] MapProjection doesn't converge

2017-10-31 Thread Matteo Cusmai
Hi all,
I am trying to check my data against epsg 25832.
Following the steps:

   1. get bounds of epsg:25832 in lon, lat (https://epsg.io/25832) -->
   (-16.1 32.88) (39.65 84.17)
   2. calculate bbox: select
   st_astext(st_envelope(st_geometryfromtext('LINESTRING(-16.1 32.88, 39.65
   84.17 )', 4326))) --> POLYGON((-16.1 32.88,-16.1 84.17,39.65 84.17,39.65
   32.88,-16.1 32.88))
   3. count point outside: select count(*) from table_lines where not
   ST_Intersects(st_transform(geom, 4326), st_geometryfromtext('POLYGON((-16.1
   32.88,-16.1 84.17,39.65 84.17,39.65 32.88,-16.1 32.88))', 4326)) --> 0

I have executed the check also using epsg:3857:

select count(*) from sinfidb_history.infr_rt_estensione_p where not
ST_Contains(st_transform(st_geometryfromtext('POLYGON((-16.1 32.88,-16.1
84.17,39.65 84.17,39.65 32.88,-16.1 32.88))', 4326), 3857),
st_transform(geom, 3857))

with same result.


So, do you think there is a better way to make this check?



Matteo Cusmai

On Sat, Oct 28, 2017 at 9:26 PM, Andrea Aime 
wrote:

>
>
> Il 28 ott 2017 8:14 PM, "Matteo Cusmai"  ha
> scritto:
>
> So, the most probable cause of this error is the presence of data on the
> boundary of the epsg, isn't it?
>
>
> At the border... Not really, I'd say really outside. But we are going in
> circles here... Can you use another tool to just query the data?
>
> Also, which version of GeoServer are you using?
>
> Cheers
> Andrea
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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

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


Re: [Geoserver-users] inspire-appscheme-wms-sqlserver

2017-10-31 Thread Nuno Oliveira

Hi,

Indeed something wrong happened when App-Schema generated the query for your 
mappings.
It is not obvious to me why App-Schema generated such a bad SQL query, I 
suggest you
to open a JIRA ticket describing the issue and providing enough info (mappings, 
and bit of the data)
to reproduce this issue.

In the mean time you may want to deactivate the JOIN optimization in App-Schema 
[1] and see if
App-Schema will produce correct SQL queries. If it works the performance will 
be bad but it will allow
you to proceed with your mapping work.

Hope it helps,

Nuno Oliveira

[1] 
http://docs.geoserver.org/latest/en/user/data/app-schema/joining.html#configuration

On 10/31/2017 07:13 AM, Verbeeck Bart wrote:

Hi again

I moved my data to postgresql and I received the same error doing a getmap 
request. So this problem is not sqlserver related.

Is it a wrong idea to do wms requests to an application scheme based layer?


Geoserver sends the following query to my postgis database, and it has an error at "AND 
"uidn" FROM "public"."bekken"

SELECT "public"."bekken"."ogc_fid",encode(ST_AsEWKB("public"."bekken"."wkb_geometry"),'base64') as 
"wkb_geometry","public"."bekken"."uidn","public"."bekken"."oidn"
FROM "public"."bekken" INNER JOIN ( SELECT DISTINCT "oidn" FROM 
"public"."bekken"
WHERE "wkb_geometry" && ST_GeomFromText('POLYGON ((-80016.3310434809 -54667.64601825603, 
-80016.3310434809 322203.1650796655, 391530.2915944371 322203.1650796655, 391530.2915944371 
-54667.64601825603, -80016.3310434809 -54667.64601825603))', 31370) ) "temp_alias_used_for_filter"
ON ( "bekken"."oidn" = "temp_alias_used_for_filter"."oidn" AND "uidn" FROM 
"public"."bekken"
WHERE "wkb_geometry" && ST_GeomFromText('POLYGON ((-80016.3310434809 -54667.64601825603, 
-80016.3310434809 322203.1650796655, 391530.2915944371 322203.1650796655, 391530.2915944371 
-54667.64601825603, -80016.3310434809 -54667.64601825603))', 31370) ) "temp_alias_used_for_filter"
ON ( "bekken"."uidn" = "temp_alias_used_for_filter"."uidn" )  ORDER BY "public"."bekken"."oidn" ASC, 
"public"."bekken"."uidn" ASC, "public"."bekken"."ogc_fid"

-Original Message-
From: Verbeeck Bart [mailto:bart.verbe...@kb.vlaanderen.be]
Sent: dinsdag 31 oktober 2017 7:35
To: Ben Caradoc-Davies ; 
geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] inspire-appscheme-wms-sqlserver

Thanks Ben

Yes, I have configured the secondary namespace. The problem occurs with " 
&outputFormat=gml3", not with " &outputFormat=gml32"
I will follow up the GEOS-8250 issue. Hopefully it will be solved in a future 
release

Bart

-Original Message-
From: Ben Caradoc-Davies [mailto:b...@transient.nz]
Sent: maandag 30 oktober 2017 21:02
To: Verbeeck Bart ; 
geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] inspire-appscheme-wms-sqlserver

Bart,

I have no experience with sqlserver, but in relation to the null GML namespace, 
have you configured a secondary namespace for GML 3.2.1?
http://docs.geoserver.org/latest/en/user/data/app-schema/supported-gml-versions.html#secondary-namespace-for-gml-3-2-1-required

The DescribeFeatureType problem is reported here:

[GEOS-8250] WFS 2.0 DescribeFeatureType responses for app-schema types contain 
a spurious WFS 2.0 jar import
https://osgeo-org.atlassian.net/browse/GEOS-8250

Kind regards,
Ben.

On 30/10/17 23:22, Verbeeck Bart wrote:

Hi List

In our organization we try to use geoserver (2.11) to serve harmonized services 
using the application scheme extension.
Our data is stored in a SQLSERVER db. The documentation refers to postgres and 
oracle databases, not to sqlserver.

The wfs services seem to work, although

*   there is the null namespace problem (null:identifier [ 
xmlns:null=http://www.opengis.net/gml/3.2 
codeSpace=http://inspire.ec.europa.eu/ids ])
*   the describefeaturetype (2.0.0) result is not as I would expect, 
schemaLocation="jar:file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%208.0/webapps/overdrachtdiensten/WEB-INF/lib/gt-xsd-wfs-17.2.jar!/org/geotools/wfs/v2_0/wfs.xsd

The wms getfeaturetype result is ok, but the getmap request causes an
erroneous sql request (at "FROM") (see below) The wms getmap result is 
successful on a shapefile based layer.

Does anyone have experience using the app scheme on a sql server database?

Thanks

Bart


SELECT "RT"."BEKKEN"."OBJECTID","RT"."BEKKEN"."UIDN","RT"."BEKKEN"."SHAPE" as 
"SHAPE","RT"."BEKKEN"."OIDN"
 FROM "RT"."BEKKEN"
 INNER JOIN (
   SELECT DISTINCT "OIDN"
   FROM "RT"."BEKKEN"
   WHERE "SHAPE".Filter(geometry::STGeomFromText('POLYGON 
((12127.108205075114 2103.1082012057304, 12127.108205075114 395097.58538683876, 267800.38165359845 
395097.58538683876, 267800.38165359845 2103.1082012057304, 12127.108205075114 
2103.1082012057304))', 31370)) = 1 ) "temp_alias_used_for_filter"
   ON ( "BEKKEN"."OIDN" = "temp_alias_used_for_filter"."OIDN" AND "UIDN" FROM 
"

Re: [Geoserver-users] inspire-appscheme-wms-sqlserver

2017-10-31 Thread Verbeeck Bart
Hi again

I moved my data to postgresql and I received the same error doing a getmap 
request. So this problem is not sqlserver related.

Is it a wrong idea to do wms requests to an application scheme based layer?


Geoserver sends the following query to my postgis database, and it has an error 
at "AND "uidn" FROM "public"."bekken"

SELECT 
"public"."bekken"."ogc_fid",encode(ST_AsEWKB("public"."bekken"."wkb_geometry"),'base64')
 as "wkb_geometry","public"."bekken"."uidn","public"."bekken"."oidn" 
FROM "public"."bekken" INNER JOIN ( SELECT DISTINCT "oidn" FROM 
"public"."bekken" 
WHERE "wkb_geometry" && ST_GeomFromText('POLYGON ((-80016.3310434809 
-54667.64601825603, -80016.3310434809 322203.1650796655, 391530.2915944371 
322203.1650796655, 391530.2915944371 -54667.64601825603, -80016.3310434809 
-54667.64601825603))', 31370) ) "temp_alias_used_for_filter" 
ON ( "bekken"."oidn" = "temp_alias_used_for_filter"."oidn" AND "uidn" FROM 
"public"."bekken" 
WHERE "wkb_geometry" && ST_GeomFromText('POLYGON ((-80016.3310434809 
-54667.64601825603, -80016.3310434809 322203.1650796655, 391530.2915944371 
322203.1650796655, 391530.2915944371 -54667.64601825603, -80016.3310434809 
-54667.64601825603))', 31370) ) "temp_alias_used_for_filter" 
ON ( "bekken"."uidn" = "temp_alias_used_for_filter"."uidn" )  ORDER BY 
"public"."bekken"."oidn" ASC, "public"."bekken"."uidn" ASC, 
"public"."bekken"."ogc_fid"

-Original Message-
From: Verbeeck Bart [mailto:bart.verbe...@kb.vlaanderen.be] 
Sent: dinsdag 31 oktober 2017 7:35
To: Ben Caradoc-Davies ; 
geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] inspire-appscheme-wms-sqlserver

Thanks Ben

Yes, I have configured the secondary namespace. The problem occurs with " 
&outputFormat=gml3", not with " &outputFormat=gml32"
I will follow up the GEOS-8250 issue. Hopefully it will be solved in a future 
release

Bart

-Original Message-
From: Ben Caradoc-Davies [mailto:b...@transient.nz]
Sent: maandag 30 oktober 2017 21:02
To: Verbeeck Bart ; 
geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] inspire-appscheme-wms-sqlserver

Bart,

I have no experience with sqlserver, but in relation to the null GML namespace, 
have you configured a secondary namespace for GML 3.2.1?
http://docs.geoserver.org/latest/en/user/data/app-schema/supported-gml-versions.html#secondary-namespace-for-gml-3-2-1-required

The DescribeFeatureType problem is reported here:

[GEOS-8250] WFS 2.0 DescribeFeatureType responses for app-schema types contain 
a spurious WFS 2.0 jar import
https://osgeo-org.atlassian.net/browse/GEOS-8250

Kind regards,
Ben.

On 30/10/17 23:22, Verbeeck Bart wrote:
> Hi List
> 
> In our organization we try to use geoserver (2.11) to serve harmonized 
> services using the application scheme extension.
> Our data is stored in a SQLSERVER db. The documentation refers to postgres 
> and oracle databases, not to sqlserver.
> 
> The wfs services seem to work, although
> 
>*   there is the null namespace problem (null:identifier [ 
> xmlns:null=http://www.opengis.net/gml/3.2 
> codeSpace=http://inspire.ec.europa.eu/ids ])
>*   the describefeaturetype (2.0.0) result is not as I would expect, 
> schemaLocation="jar:file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%208.0/webapps/overdrachtdiensten/WEB-INF/lib/gt-xsd-wfs-17.2.jar!/org/geotools/wfs/v2_0/wfs.xsd
> 
> The wms getfeaturetype result is ok, but the getmap request causes an 
> erroneous sql request (at "FROM") (see below) The wms getmap result is 
> successful on a shapefile based layer.
> 
> Does anyone have experience using the app scheme on a sql server database?
> 
> Thanks
> 
> Bart
> 
> 
> SELECT "RT"."BEKKEN"."OBJECTID","RT"."BEKKEN"."UIDN","RT"."BEKKEN"."SHAPE" as 
> "SHAPE","RT"."BEKKEN"."OIDN"
> FROM "RT"."BEKKEN"
> INNER JOIN (
>   SELECT DISTINCT "OIDN"
>   FROM "RT"."BEKKEN"
>   WHERE "SHAPE".Filter(geometry::STGeomFromText('POLYGON 
> ((12127.108205075114 2103.1082012057304, 12127.108205075114 
> 395097.58538683876, 267800.38165359845 395097.58538683876, 267800.38165359845 
> 2103.1082012057304, 12127.108205075114 2103.1082012057304))', 31370)) = 1 ) 
> "temp_alias_used_for_filter"
>   ON ( "BEKKEN"."OIDN" = "temp_alias_used_for_filter"."OIDN" AND 
> "UIDN" FROM "RT"."BEKKEN" WHERE 
> "SHAPE".Filter(geometry::STGeomFromText('POLYGON ((12127.108205075114 
> 2103.1082012057304, 12127.108205075114 395097.58538683876, 267800.38165359845 
> 395097.58538683876, 267800.38165359845 2103.1082012057304, 12127.108205075114 
> 2103.1082012057304))', 31370)) = 1 ) "temp_alias_used_for_filter"
>   ON ( "BEKKEN"."UIDN" = "temp_alias_used_for_filter"."UIDN" )
>   ORDER BY "RT"."BEKKEN"."OIDN" ASC, "RT"."BEKKEN"."UIDN" ASC, 
> "RT"."BEKKEN"."OBJECTID"
> 
> 
> 
> 
> --
>  Check out the vibrant tech commun

Re: [Geoserver-users] REST-API: Layers doesn't have a workspace

2017-10-31 Thread Matteo Cusmai
Hi,
I had the same problem, but the cause was the naming convention of
workspace.

Now we are using geoserver manager lib and we are able to manage layers
with same name in different workspace.

On 30 Oct 2017 11:30, "Andrea Aime"  wrote:

> 2017-10-30 10:45 GMT+01:00 Gubler, Ruediger :
>
>> Hi,
>>
>>
>>
>> We want to setup GeoServer using the REST-API.
>>
>> Unfortunately the /layers doesn’t have a /workspaces//layers….
>> access.
>>
>>
>>
>> How can we handle multiple, same name layers, for different customers
>> (workspaces) using the REST api?
>>
>
> Simple, you cannot in the current setup, seet this ticket and associated
> ones:
> https://osgeo-org.atlassian.net/browse/GEOS-7682
>
> The tricky part here is that changing the current output would break
> backwards compatibility, so
> some extra effort is involved, maybe a breaking change, maybe a new
> endpoind for qualified layers...
> that requires discussion and possibly a formal proposal... which likely
> puts this ticket out of "spare time fixing" reach,
> and more into the "commercial support" realm.
>
> 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 <0584%20962313>
> fax: +39 0584 1660272 <0584%20166%200272>
> mob: +39  339 8844549 <339%20884%204549>
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> AVVERTENZE AI SENSI DEL D.Lgs. 196/2003
>
> Le informazioni contenute in questo messaggio di posta elettronica e/o
> nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
> loro utilizzo è consentito esclusivamente al destinatario del messaggio,
> per le finalità indicate nel messaggio stesso. Qualora riceviate questo
> messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
> darcene notizia via e-mail e di procedere alla distruzione del messaggio
> stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
> divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
> utilizzarlo per finalità diverse, costituisce comportamento contrario ai
> principi dettati dal D.Lgs. 196/2003.
>
> The information in this message and/or attachments, is intended solely for
> the attention and use of the named addressee(s) and may be confidential or
> proprietary in nature or covered by the provisions of privacy act
> (Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
> Code).Any use not in accord with its purpose, any disclosure, reproduction,
> copying, distribution, or either dissemination, either whole or partial, is
> strictly forbidden except previous formal approval of the named
> addressee(s). If you are not the intended recipient, please contact
> immediately the sender by telephone, fax or e-mail and delete the
> information in this message that has been received in error. The sender
> does not give any warranty or accept liability as the content, accuracy or
> completeness of sent messages and accepts no responsibility  for changes
> made after they were sent or for other risks which arise as a result of
> e-mail transmission, viruses, etc.
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> 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
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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

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