Re: [Geoserver-users] WMS multipleValues attribute to dimension looks missing...

2021-07-27 Thread carlo cancellieri
tracked by:
 https://osgeo-org.atlassian.net/browse/GEOS-10169

Il giorno mar 27 lug 2021 alle ore 19:39 carlo cancellieri <
geo.ccancelli...@gmail.com> ha scritto:

> Hi Andrea,
>  thanks I'll start firing an issue to keep track of this.
>
> Hugo thanks for your questions, well actually geoserver is already
> providing such functionality it's just not declaring that into the
> GetCapabilities.
>
> When you have a custom dimension (but also works over time and elevation)
> you can have a list of values to select in the request. Let me make an
> example:
> Having a dimension called 'x' with values a,b,c you may want to query the
> server with:
> &DIM_x=a
> or (if the server is supporting that)
> &DIM_x=a,b
> which may return granules from you both values of that dimension.
>
> What we are missing apparently is 'multipleValue' as attribute in the
> getCapabilities letting the clients know that the server is capable of
> returning tiles resulting from multiple values of the same dimension.
>
> It's still unclear to me if this also apply to dimensions with interval or
> duration (my usecase at the moment is related only to lists of custom
> dimensions)
>
> Best,
> C.
>
> Il giorno mar 27 lug 2021 alle ore 16:47 Hugo Herrador Carrasco <
> hugo.herra...@gmail.com> ha scritto:
>
>> I don't know if multipleValues attribute for dimension tag is natively in
>> GeoServer or if you need a customization of your capability document.
>>
>> you mean having a layer with two different time dimension, for example,
>> one with periocity of month and another with peridicity of days?
>> would that mean having two time dimension declaration in the capability
>> document or that possibility implies just one time name dimension
>> declaration?
>>
>> If is the second case maybe next paragraph doesn't sound good (:
>>
>> A layer may provide a dimension declaration that has the same name
>> attribute (case-insensitive matching) as a
>> declaration in another layer. However, the dimension shall not be
>> re-declared using the same name with
>> conflicting units or unitSymbol attributes. Extent values, and the
>> attributes default, nearestValue and
>> multipleValues, may be different for each layer.
>>
>> Greetings,
>>
>> El lun, 19 jul 2021 a las 17:50, carlo cancellieri (<
>> geo.ccancelli...@gmail.com>) escribió:
>>
>>> Dear List,
>>>  I've a question over the getCapabilities 1.3.0 related the WMS
>>> dimensions.
>>> I'm over geoserver 2.18.0
>>>
>>> Into the standard definitions page (page 52) Table C.1 — Contents of a
>>> dimension element
>>> available here:
>>>
>>> https://portal.ogc.org/files/?artifact_id=14416
>>>
>>> I see multipleValues=0|1 available as OPTIONAL attribute to the
>>> dimension.
>>>
>>> Now I also see that geoserver is using all the other parameters but not
>>> this one.
>>>
>>> We are working on a frontend and we would like to recognize (without
>>> having to specify over the frontend configuration) if the layer supports
>>> the multiple dimension values or not, not supposing that but checking the
>>> real backend capabilities so also checking for that attribute.
>>>
>>> MapServer is implementing that so I was wondering IF there's a way to
>>> obtain the same attribute also from geoserver (already implemented).
>>>
>>> I know geoserver supports multiple values but from the url we can't
>>> understand if it's a geoserver and personally I would not add logic to
>>> frontend if the indication of that 'may' come from the backend.
>>>
>>> What do you think? Should we add that or there are specific thoughts
>>> over that attribute that I'm not aware of?
>>>
>>> Thanks. Regards.
>>> C.
>>>
>>> --
>>> Mr. Carlo Cancellieri
>>> *skype*: ccancellieri
>>> *Twitter*: @cancellieric
>>> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>>> ___
>>> 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
>>>
>&

Re: [Geoserver-users] WMS multipleValues attribute to dimension looks missing...

2021-07-27 Thread carlo cancellieri
Hi Andrea,
 thanks I'll start firing an issue to keep track of this.

Hugo thanks for your questions, well actually geoserver is already
providing such functionality it's just not declaring that into the
GetCapabilities.

When you have a custom dimension (but also works over time and elevation)
you can have a list of values to select in the request. Let me make an
example:
Having a dimension called 'x' with values a,b,c you may want to query the
server with:
&DIM_x=a
or (if the server is supporting that)
&DIM_x=a,b
which may return granules from you both values of that dimension.

What we are missing apparently is 'multipleValue' as attribute in the
getCapabilities letting the clients know that the server is capable of
returning tiles resulting from multiple values of the same dimension.

It's still unclear to me if this also apply to dimensions with interval or
duration (my usecase at the moment is related only to lists of custom
dimensions)

Best,
C.

Il giorno mar 27 lug 2021 alle ore 16:47 Hugo Herrador Carrasco <
hugo.herra...@gmail.com> ha scritto:

> I don't know if multipleValues attribute for dimension tag is natively in
> GeoServer or if you need a customization of your capability document.
>
> you mean having a layer with two different time dimension, for example,
> one with periocity of month and another with peridicity of days?
> would that mean having two time dimension declaration in the capability
> document or that possibility implies just one time name dimension
> declaration?
>
> If is the second case maybe next paragraph doesn't sound good (:
>
> A layer may provide a dimension declaration that has the same name
> attribute (case-insensitive matching) as a
> declaration in another layer. However, the dimension shall not be
> re-declared using the same name with
> conflicting units or unitSymbol attributes. Extent values, and the
> attributes default, nearestValue and
> multipleValues, may be different for each layer.
>
> Greetings,
>
> El lun, 19 jul 2021 a las 17:50, carlo cancellieri (<
> geo.ccancelli...@gmail.com>) escribió:
>
>> Dear List,
>>  I've a question over the getCapabilities 1.3.0 related the WMS
>> dimensions.
>> I'm over geoserver 2.18.0
>>
>> Into the standard definitions page (page 52) Table C.1 — Contents of a
>> dimension element
>> available here:
>>
>> https://portal.ogc.org/files/?artifact_id=14416
>>
>> I see multipleValues=0|1 available as OPTIONAL attribute to the dimension.
>>
>> Now I also see that geoserver is using all the other parameters but not
>> this one.
>>
>> We are working on a frontend and we would like to recognize (without
>> having to specify over the frontend configuration) if the layer supports
>> the multiple dimension values or not, not supposing that but checking the
>> real backend capabilities so also checking for that attribute.
>>
>> MapServer is implementing that so I was wondering IF there's a way to
>> obtain the same attribute also from geoserver (already implemented).
>>
>> I know geoserver supports multiple values but from the url we can't
>> understand if it's a geoserver and personally I would not add logic to
>> frontend if the indication of that 'may' come from the backend.
>>
>> What do you think? Should we add that or there are specific thoughts over
>> that attribute that I'm not aware of?
>>
>> Thanks. Regards.
>> C.
>>
>> --
>> Mr. Carlo Cancellieri
>> *skype*: ccancellieri
>> *Twitter*: @cancellieric
>> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>> ___
>> Geoserver-users mailing list
>>
>> Please make sure you read the following two resources before posting to
>> this list:
>> - Earning your support instead of buying it, but Ian Turton:
>> http://www.ianturton.com/talks/foss4g.html#/
>> - The GeoServer user list posting guidelines:
>> http://geoserver.org/comm/userlist-guidelines.html
>>
>> If you want to request a feature or an improvement, also see this:
>> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>>
>>
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>
>
> --
> Hugo Herrador Carrasco
> SP (+34) 659 26 84 11
> hugo.herra...@gmail.com
>
>

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
_

Re: [Geoserver-users] Image Mosaic Time Support with Existing DB Schema

2021-07-20 Thread carlo cancellieri
Yes its possible you are probably missing tha datastore.properties pointing
to the database?
Please (google) follow the time series howto with imagemosaic to check
if/what else you are missing.


Il giorno mar 20 lug 2021 alle 11:43 Andrew Chamberlain via Geoserver-users
 ha scritto:

> Hi All
>
> Apologies for the self-reply.  I feel this is a bug, but before I can
> raise one, I understand <http://geoserver.org/issues/> that it first
> needs to be confirmed by a third party.  I was therefore wondering if
> anyone might be able to confirm the following:
>
> 1) It should be possible for an ImageMosaic layer to use a pre-populated
> timestamp column in an existing granule index (i.e. database table).
> 2) The indexer.properties file below looks reasonable.
>
> Many thanks in advance,
>
> Andrew
>
>
>
> On Monday, 12 July 2021, 14:43:50 BST, Andrew Chamberlain via
> Geoserver-users  wrote:
>
>
> Hi All,
>
> Not sure if this should be possible, but I'm trying to configure an
> ImageMosaic layer, whereby the index is pre-populated in a Postgres
> database and includes a timestamp column for when the imagery was
> captured.  My indexer.properties file looks like:
>
> TimeAttribute=datecaptured
> Schema=*geometry:Polygon,location:String,datecaptured:java.util.Date
> PropertyCollectors=
> UseExistingSchema=true
> Caching=false
> AbsolutePath=true
> Name=metadata
>
>
> However, when creating the layer, the TIME dimension remains unavailable,
> with the message "*Cannot enable, no attribute of type Date found*".
> I've also created an index in the database, in case this mattered.
>
> I can't find an example of using a mosaic index with a pre-populated time,
> so was starting to wonder whether it's possible at all?
>
> Have tried on versions 2.17 and 2.19.  Any pointers would be greatly
> appreciated.
>
> Many thanks,
>
> Andrew Chamberlain
>
>
> P.S. The only hint of any issue is the following from the logs, but I
> imagine this is a red herring and just a minor UI issue?
>
> 2021-07-12 14:21:27,263 WARN [wicket.Localizer] - Tried to retrieve a
> localized string for a component that has not yet been added to the page.
> This can sometimes lead to an invalid or no localized resource returned.
> Make sure you are not calling Component#getString() inside your Component's
> constructor. Offending component: [DimensionEditor [Component id = time]]
>
>
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


[Geoserver-users] WMS multipleValues attribute to dimension looks missing...

2021-07-19 Thread carlo cancellieri
Dear List,
 I've a question over the getCapabilities 1.3.0 related the WMS dimensions.
I'm over geoserver 2.18.0

Into the standard definitions page (page 52) Table C.1 — Contents of a
dimension element
available here:

https://portal.ogc.org/files/?artifact_id=14416

I see multipleValues=0|1 available as OPTIONAL attribute to the dimension.

Now I also see that geoserver is using all the other parameters but not
this one.

We are working on a frontend and we would like to recognize (without having
to specify over the frontend configuration) if the layer supports the
multiple dimension values or not, not supposing that but checking the real
backend capabilities so also checking for that attribute.

MapServer is implementing that so I was wondering IF there's a way to
obtain the same attribute also from geoserver (already implemented).

I know geoserver supports multiple values but from the url we can't
understand if it's a geoserver and personally I would not add logic to
frontend if the indication of that 'may' come from the backend.

What do you think? Should we add that or there are specific thoughts over
that attribute that I'm not aware of?

Thanks. Regards.
C.

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Geoserver + GeoFence in multiple cluster environment

2020-09-15 Thread carlo cancellieri
Dear List,
 maybe it was to complex, let me simplify:

How I can administer security/rest.properties via UI?
F.e.: Is GeoFence able to limit access to the Geoserver's REST api,
granting permissions to create resources (workspaces,stores,layers) via
REST ?

How did you manage that *dynamically* (at runtime)?

Regards,
C.


Il giorno gio 10 set 2020 alle ore 19:01 carlo cancellieri <
geo.ccancelli...@gmail.com> ha scritto:

> Hi all,
>  not sure this is the right place to ask for GeoFence but let me try.
>
> So I'm running multiple geserver in cluster: all having a separate replica
> of the data+datadir but connected to the same database via a connection
> pool configured in tomcat (one Database for each cluster).
>
> The loadbalancer is rotating through the Geoserver and the session is not
> shared for the moment.
>
> I've several of clusters like these and all are meant to be used as read
> only, update is performed rolling/updating the snapshot of the disks
> (automatically by the cloud manager with no downtime).
>
> The clusters have an external Master Geoserver (one for each cluster) used
> as model for the snapshots, so ANY write operation will be performed over
> those instances and the cluster will be lazily updated later (pull).
>
> Now I'm starting looking at GeoFence to manage the authentications and to
> grant permissions over layers for any write operation over Master instances
> (multiple customers) and for any read operation over the clusters...
>
> In our scenario users can be managed across different cluster so I've to
> centralize the user management (federated identity provider) and possibly
> permissions.
>
> Few initial questions about geofence:
>
> - To simplify the infrastructure I'm wondering if it is possible to
> install it as embedded plugin server sharing the GeoFenceDataSource
> configuration over a single postgis DB (shared across one or more clusters
> and the relatives Masters instances)?
>
> - Is GeoFence able to limit access to the Geoserver's REST api to grant
> permissions to create resources via REST (f.e. w/ GeoCatBridge) this is
> something that I'm currently doing with rest.properties but I'd like to
> make it configurable via GUI.
>
> - is geofence really multitenant: supporting mutiple domains and paths
> (not just by workspace)
>
> - If it's not possible to share the database, how to clusterize an
> embedded/standalone geofence server?
>
> - looking here
> <https://github.com/geoserver/geofence/wiki/GeoFence-configuration#database-configuration-1>
>  I
> see it's possible to point to a database with an internal jdbc connection
> pool, is it possible to use an external (defined in tomcat) jdbc connection
> pool configuring geofence datasource via jndi? (any example is really
> appreciated)
>
> Thank you so much for any hint to address this new challenge.
>
> Regards,
> C.
>
> --
> Mr. Carlo Cancellieri
> *skype*: ccancellieri
> *Twitter*: @cancellieric
> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Regarding facing issue in upgrading geoserver plateform independent

2020-09-11 Thread carlo cancellieri
Shashi,
 welcome!

Can you please describe *in detail* your environment and the problem you
are facing?

C.

Il giorno ven 11 set 2020 alle ore 18:51 Shashi Verma 
ha scritto:

> Dear Carlo,
> Actually this is my first time in this user list group so I'm not much
> aware about its process, how can I help you with my work status.
> Links sent by you I've tried already but there is no any solution of
> my problem.
>
> Thanks
>
> On Fri, 11 Sep 2020, 10:11 pm carlo cancellieri, <
> geo.ccancelli...@gmail.com> wrote:
>
>> Ciao Shashi,
>>  there are several changes, actually I'm not informed about your task
>> status so I can only point you here:
>>
>>
>> https://docs.geoserver.org/latest/en/user/installation/upgrade.html#jts-type-bindings-geoserver-2-14-and-newer
>> and
>>
>> https://docs.geoserver.org/latest/en/user/datadirectory/migrating.html#datadir-migrating
>>
>> The jetty version can be transparently used over windows, I would also
>> suggest to use an external data directory and look carefully here:
>>
>> https://docs.geoserver.org/latest/en/user/installation/index.html
>>
>> Following step by step the installation guide especially for Windows
>> based installation.
>>
>> Regards,
>> C.
>>
>>
>>
>> Il giorno ven 11 set 2020 alle ore 17:32 Shashi Verma <
>> shashiv...@gmail.com> ha scritto:
>>
>>> Thanks carlo cancellieri.
>>> Dear,
>>>
>>> I've got stuck to upgrading platform independent binary geoserver 2.14.4
>>> to geoserver 2.18RC. I've got solution for windows installer but not for
>>> platform independent binary.
>>> I'm digging out since two days and still I don't have any solution pls
>>> help if it is
>>> possible. I've to report to the manager.
>>>
>>> I'll be very grateful to you.
>>>
>>> Thanks in advance.
>>> Shashi
>>>
>>>
>>>
>>> On Fri, 11 Sep 2020, 8:41 pm carlo cancellieri, <
>>> geo.ccancelli...@gmail.com> wrote:
>>>
>>>> Thanks for all your effort guys,
>>>>
>>>>  we're testing the RC and we confirm that it correctly ships what we
>>>> needed vectortiles + pregen in addition to the sta
>>>>
>>>> Actually I'm still not 100% satisfied about that and I'd love to
>>>> continue working in that direction adding the on the fly simplification
>>>> support also (but it's a more complex challenge that requires time).
>>>>
>>>> I have some concern on the distance calculation and I hope to be able
>>>> to talk with the maintainer of that extension to discuss and clarify
>>>> various aspects.
>>>>
>>>> Anyhow it is doing what we need and we can't wait for the release to
>>>> deliver such functionality into our cloud (with the 2.17.3).
>>>>
>>>> oh, it was very funny to see our project name 'hidden' into the release
>>>> description (hand-in-hand)
>>>>
>>>> My best regards
>>>> C.
>>>>
>>>> Il giorno gio 10 set 2020 alle ore 23:25 Jody Garnett <
>>>> jody.garn...@gmail.com> ha scritto:
>>>>
>>>>> Hey everyone,
>>>>>
>>>>> GeoServer 2.18-RC Release Candidate is now available for testing, read
>>>>> all about it in our blog:
>>>>> http://blog.geoserver.org/2020/09/08/geoserver-2-18-rc-released/
>>>>>
>>>>> Thanks to Jukka Rahkonen and Brad Hards for initial testing. To add
>>>>> your name to the list for the 2.18 release announcement: download the
>>>>> release candidate, try it out, and reply to this email thread!
>>>>> --
>>>>> GeoServer Project Steering Committee
>>>>> ___
>>>>> Geoserver-users mailing list
>>>>>
>>>>> Please make sure you read the following two resources before posting
>>>>> to this list:
>>>>> - Earning your support instead of buying it, but Ian Turton:
>>>>> http://www.ianturton.com/talks/foss4g.html#/
>>>>> - The GeoServer user list posting guidelines:
>>>>> http://geoserver.org/comm/userlist-guidelines.html
>>>>>
>>>>> If you want to request a feature or an improvement, also see this:
>>>>> https://github.com/geoserver/geo

Re: [Geoserver-users] Regarding facing issue in upgrading geoserver plateform independent

2020-09-11 Thread carlo cancellieri
Ciao Shashi,
 there are several changes, actually I'm not informed about your task
status so I can only point you here:

https://docs.geoserver.org/latest/en/user/installation/upgrade.html#jts-type-bindings-geoserver-2-14-and-newer
and
https://docs.geoserver.org/latest/en/user/datadirectory/migrating.html#datadir-migrating

The jetty version can be transparently used over windows, I would also
suggest to use an external data directory and look carefully here:

https://docs.geoserver.org/latest/en/user/installation/index.html

Following step by step the installation guide especially for Windows based
installation.

Regards,
C.



Il giorno ven 11 set 2020 alle ore 17:32 Shashi Verma 
ha scritto:

> Thanks carlo cancellieri.
> Dear,
>
> I've got stuck to upgrading platform independent binary geoserver 2.14.4
> to geoserver 2.18RC. I've got solution for windows installer but not for
> platform independent binary.
> I'm digging out since two days and still I don't have any solution pls
> help if it is
> possible. I've to report to the manager.
>
> I'll be very grateful to you.
>
> Thanks in advance.
> Shashi
>
>
>
> On Fri, 11 Sep 2020, 8:41 pm carlo cancellieri, <
> geo.ccancelli...@gmail.com> wrote:
>
>> Thanks for all your effort guys,
>>
>>  we're testing the RC and we confirm that it correctly ships what we
>> needed vectortiles + pregen in addition to the sta
>>
>> Actually I'm still not 100% satisfied about that and I'd love to continue
>> working in that direction adding the on the fly simplification support also
>> (but it's a more complex challenge that requires time).
>>
>> I have some concern on the distance calculation and I hope to be able to
>> talk with the maintainer of that extension to discuss and clarify various
>> aspects.
>>
>> Anyhow it is doing what we need and we can't wait for the release to
>> deliver such functionality into our cloud (with the 2.17.3).
>>
>> oh, it was very funny to see our project name 'hidden' into the release
>> description (hand-in-hand)
>>
>> My best regards
>> C.
>>
>> Il giorno gio 10 set 2020 alle ore 23:25 Jody Garnett <
>> jody.garn...@gmail.com> ha scritto:
>>
>>> Hey everyone,
>>>
>>> GeoServer 2.18-RC Release Candidate is now available for testing, read
>>> all about it in our blog:
>>> http://blog.geoserver.org/2020/09/08/geoserver-2-18-rc-released/
>>>
>>> Thanks to Jukka Rahkonen and Brad Hards for initial testing. To add your
>>> name to the list for the 2.18 release announcement: download the release
>>> candidate, try it out, and reply to this email thread!
>>> --
>>> GeoServer Project Steering Committee
>>> ___
>>> Geoserver-users mailing list
>>>
>>> Please make sure you read the following two resources before posting to
>>> this list:
>>> - Earning your support instead of buying it, but Ian Turton:
>>> http://www.ianturton.com/talks/foss4g.html#/
>>> - The GeoServer user list posting guidelines:
>>> http://geoserver.org/comm/userlist-guidelines.html
>>>
>>> If you want to request a feature or an improvement, also see this:
>>> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>>>
>>>
>>> Geoserver-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>>
>>
>>
>> --
>> Mr. Carlo Cancellieri
>> *skype*: ccancellieri
>> *Twitter*: @cancellieric
>> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>> ___
>> Geoserver-users mailing list
>>
>> Please make sure you read the following two resources before posting to
>> this list:
>> - Earning your support instead of buying it, but Ian Turton:
>> http://www.ianturton.com/talks/foss4g.html#/
>> - The GeoServer user list posting guidelines:
>> http://geoserver.org/comm/userlist-guidelines.html
>>
>> If you want to request a feature or an improvement, also see this:
>> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>>
>>
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Geoserver WMS Layer w No Credentials

2020-09-11 Thread carlo cancellieri
Chris,
 it should be the default behavior, not sure if something has recently
changed.
I would just double check to have a permission definition like this:

*.*.r=*

https://docs.geoserver.org/latest/en/user/security/layer.html#protecting-a-single-workspace-and-a-single-layer

or

*.*.r=ROLE_ANONYMOUS

Other:
Be sure to enable WMS service.
If you don't care about current settings try also to delete the security
folder (backup) and restart geoserver it may restore defaults.

Regards,
C.


Il giorno ven 11 set 2020 alle ore 18:04 McCleary, Chris <
chris.mccle...@davey.com> ha scritto:

> Hello all! Could someone please help me out?
> I am trying to configure a workspace (with datastore and layers) that does
> not require any user login to access it as a WMS service. I found this
> documentation, and I think I have everything set up properly, but I'm also
> a bit confused about all that needs to be done:
> https://docs.geoserver.org/latest/en/user/security/layer.html
> I probably have some global permission set up that is adding security and
> I'm not sure how to find it...
>
> Is there a cut-and-dry way to make any new workspace that is added *by
> default *not require user credentials when connecting to it as a wms/wfs
> service?
>
> Thank you!
>
> --
>
> *Chris McCleary* | IT Software Support Specialist
> Davey Resource Group, Inc.
> O: 800.828.8312 ext. 8206
>
> *For TreeKeeper support requests, please contact the*
> * TreeKeeper Support Team:**800.828.8312 ext 4857* *| *
> treekeepersupp...@davey.com
>
>  ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] GeoServer 2.18-RC Release Candidate released

2020-09-11 Thread carlo cancellieri
Thanks for all your effort guys,

 we're testing the RC and we confirm that it correctly ships what we
needed vectortiles + pregen in addition to the sta

Actually I'm still not 100% satisfied about that and I'd love to continue
working in that direction adding the on the fly simplification support also
(but it's a more complex challenge that requires time).

I have some concern on the distance calculation and I hope to be able to
talk with the maintainer of that extension to discuss and clarify various
aspects.

Anyhow it is doing what we need and we can't wait for the release to
deliver such functionality into our cloud (with the 2.17.3).

oh, it was very funny to see our project name 'hidden' into the release
description (hand-in-hand)

My best regards
C.

Il giorno gio 10 set 2020 alle ore 23:25 Jody Garnett <
jody.garn...@gmail.com> ha scritto:

> Hey everyone,
>
> GeoServer 2.18-RC Release Candidate is now available for testing, read all
> about it in our blog:
> http://blog.geoserver.org/2020/09/08/geoserver-2-18-rc-released/
>
> Thanks to Jukka Rahkonen and Brad Hards for initial testing. To add your
> name to the list for the 2.18 release announcement: download the release
> candidate, try it out, and reply to this email thread!
> --
> GeoServer Project Steering Committee
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] libcurl, viscurl, visgs

2020-09-10 Thread carlo cancellieri
Hi,
 I would suggest to mount the bucket with a virtual fs as local mount path (
https://cloud.google.com/storage/docs/gcs-fuse) then use your file like
normal local files.
I would also suggest if possible to move to a google balanced attached disk
which will perform a lot better.
Regards,
C.

Il giorno gio 10 set 2020 alle ore 19:52 Arun Govind 
ha scritto:

> Hi,
> I had earlier asked about accessing files in Google Cloud Storage. My
> research suggests that I need to enable libcurl, viscurl and visgs for
> GeoServer (https://gdal.org/user/virtual_file_systems.html). Sorry I am
> very new to GeoServer and web mapping and was wondering how I can enable
> these? Are these add-ons or extensions or additional plugins or libraries?
> A detailed explanation will be very helpful.
>
> Also, can you please share some sample script showing how to code it for
> access? If it helps, I can provide the link to my GCP bucket with images.
>
> Thank you!
>
> --
> Sincerely yours,
>
> *Arun Govind, PhD*
> *Email*: arun.gov...@usask.ca
> *Ph*: +16394714525
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


[Geoserver-users] Geoserver + GeoFence in multiple cluster environment

2020-09-10 Thread carlo cancellieri
Hi all,
 not sure this is the right place to ask for GeoFence but let me try.

So I'm running multiple geserver in cluster: all having a separate replica
of the data+datadir but connected to the same database via a connection
pool configured in tomcat (one Database for each cluster).

The loadbalancer is rotating through the Geoserver and the session is not
shared for the moment.

I've several of clusters like these and all are meant to be used as read
only, update is performed rolling/updating the snapshot of the disks
(automatically by the cloud manager with no downtime).

The clusters have an external Master Geoserver (one for each cluster) used
as model for the snapshots, so ANY write operation will be performed over
those instances and the cluster will be lazily updated later (pull).

Now I'm starting looking at GeoFence to manage the authentications and to
grant permissions over layers for any write operation over Master instances
(multiple customers) and for any read operation over the clusters...

In our scenario users can be managed across different cluster so I've to
centralize the user management (federated identity provider) and possibly
permissions.

Few initial questions about geofence:

- To simplify the infrastructure I'm wondering if it is possible to install
it as embedded plugin server sharing the GeoFenceDataSource configuration
over a single postgis DB (shared across one or more clusters and the
relatives Masters instances)?

- Is GeoFence able to limit access to the Geoserver's REST api to grant
permissions to create resources via REST (f.e. w/ GeoCatBridge) this is
something that I'm currently doing with rest.properties but I'd like to
make it configurable via GUI.

- is geofence really multitenant: supporting mutiple domains and paths (not
just by workspace)

- If it's not possible to share the database, how to clusterize an
embedded/standalone geofence server?

- looking here
<https://github.com/geoserver/geofence/wiki/GeoFence-configuration#database-configuration-1>
I
see it's possible to point to a database with an internal jdbc connection
pool, is it possible to use an external (defined in tomcat) jdbc connection
pool configuring geofence datasource via jndi? (any example is really
appreciated)

Thank you so much for any hint to address this new challenge.

Regards,
C.

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Geoserver 2.17.2 GWC randomly returns white NullpointerException tiles

2020-07-30 Thread carlo cancellieri
Apologize some other missing informations:

1. Workspace 'gsoc' is isolated and the request has the workspace in the
path too ( /gsoc/wms?...layers=gsoc:layername)
2. Layer is a normal geotiff layer but it has been treated as layergroup?
->
https://github.com/geoserver/geoserver/blob/2.17.2/src/gwc/src/main/java/org/geoserver/gwc/layer/CatalogConfiguration.java#L255

3. 100% sure that the issue is not related to management of the geoserver
instances from GCP since we have only 2 instances I've checked that no
action has been performed during the test.

C.


Il giorno gio 30 lug 2020 alle ore 15:27 carlo cancellieri <
geo.ccancelli...@gmail.com> ha scritto:

> Dear List,
> Overview:
>  I'm using geoserver 2.17.2 and I've just upgraded the environment from a
> previous installation having 2.17.0 and a single instance to a new managed
> instance group (autoscaled number of instances) with a shared High
> performance disk NFS (provided by GCP).
> We know that having the cache shared on an NFS it's **not the best** but
> we would like to keep maintenance/costs/etc low so we're also sharing
> GWC_CACHE_DIR over the same NFS volume (with embedded GWC).
> We're also redirecting the traffic by source IP to redirect the same user
> to a single geoserver where controlflow has been properly configured (lower
> throughput but better control of the thresholds).
> Now I'm performing JMeter stress tests and Manual tests to see the
> throughput and the collisions on GWC miss and it performs not bad at all.
>
> Problem:
> - Using layer preview I'm obtaining something that I've never seen before:
>https://pasteboard.co/Jk38oZB.png
> - Not reproducible, it's random!!!
> - StackTrace is attached
>
> Questions:
> - I'm wondering if the update to Geoserver 2.17.2 from 2.17.0 has modified
> something on that side? (looking at the commits I can't see
> anithing recent)
> https://github.com/geoserver/geoserver/blob/cf77a0baef45eeb866c622bbbccf917bc5eb28d0/src/gwc/src/main/java/org/geoserver/gwc/layer/CatalogConfiguration.java#L253
> - Can the NFS filesystem influence this? (don't think so...)
> - can be related to https://github.com/GeoWebCache/geowebcache/issues/688
>
> Thanks for any hint,
> Regards,
> C.
>
>
> --
> Mr. Carlo Cancellieri
> *skype*: ccancellieri
> *Twitter*: @cancellieric
> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


[Geoserver-users] Geoserver 2.17.2 GWC randomly returns white NullpointerException tiles

2020-07-30 Thread carlo cancellieri
Dear List,
Overview:
 I'm using geoserver 2.17.2 and I've just upgraded the environment from a
previous installation having 2.17.0 and a single instance to a new managed
instance group (autoscaled number of instances) with a shared High
performance disk NFS (provided by GCP).
We know that having the cache shared on an NFS it's **not the best** but we
would like to keep maintenance/costs/etc low so we're also sharing
GWC_CACHE_DIR over the same NFS volume (with embedded GWC).
We're also redirecting the traffic by source IP to redirect the same user
to a single geoserver where controlflow has been properly configured (lower
throughput but better control of the thresholds).
Now I'm performing JMeter stress tests and Manual tests to see the
throughput and the collisions on GWC miss and it performs not bad at all.

Problem:
- Using layer preview I'm obtaining something that I've never seen before:
   https://pasteboard.co/Jk38oZB.png
- Not reproducible, it's random!!!
- StackTrace is attached

Questions:
- I'm wondering if the update to Geoserver 2.17.2 from 2.17.0 has modified
something on that side? (looking at the commits I can't see
anithing recent)
https://github.com/geoserver/geoserver/blob/cf77a0baef45eeb866c622bbbccf917bc5eb28d0/src/gwc/src/main/java/org/geoserver/gwc/layer/CatalogConfiguration.java#L253
- Can the NFS filesystem influence this? (don't think so...)
- can be related to https://github.com/GeoWebCache/geowebcache/issues/688

Thanks for any hint,
Regards,
C.


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/


error.log
Description: Binary data
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Pregeneralized DataStore and Vector-tyle

2020-07-20 Thread carlo cancellieri
Dear Andrea and all,
 I'm trying to conclude that pull request but I'm stuck on tests and I can
work over it only on sparetime so I'm wondering if someone can give some
hint (links or examples) on how to test it.

I've planned to create a test simulating a datastore which has support for
pregeneralization and finally check that the hint has been appended to the
query.

The problem is that I'm not able to create that datastore, I've tried to:

- Moke the datastore
- Moke the featuresource
- Implement a new dummy featuresource
- look to other implementations related to pregeneralized data

with no success:
when I try to verify and call  Set hints =
pregeneralizedLayer.getSimpleFeatureSource().getSupportedHints();
hints only contains the MamoryStore hints only...

Here is one of the snippet I've produced with no success:

private final static class PregenDataStore extends MemoryDataStore {
+
+
+private final static class _FeatureSource extends
MemoryFeatureSource {
+
+// MemoryFeatureSource delegate;
+
+ public _FeatureSource(ContentEntry entry) {
+ super(entry);
+
+Set supportedHints = new HashSet();
+supportedHints.addAll(hints);
+supportedHints.add(Hints.GEOMETRY_DISTANCE);
+ hints=Collections.unmodifiableSet(supportedHints);
+ }
+
+}
+
+ _FeatureSource fs;
+
+/**
+ * Creates the new feature store.
+ *
+ */
+@SuppressWarnings("unchecked")
+public PregenDataStore() throws IOException {
+super();
+}
+
+@Override
+public ContentFeatureSource getFeatureSource(String name) throws
IOException {
+
+ if (fs!=null)
+ return fs;
+ fs = spy(new _FeatureSource(name));
+
+return fs;
+}
+}

I'll appreciate if any of you (List) can share a better Idea to test it or
a way to moke the supported hints.

Regards,
C.



Il giorno mer 27 mag 2020 alle ore 12:14 carlo cancellieri <
geo.ccancelli...@gmail.com> ha scritto:

> Dear Andrea and ML,
>
> The vector tiles plugin should probably be modified, although I'm
>> wondering why this was not done when it was written.
>>
>
> I've just completed a first patch having a great speedup improvement of
> performances and now GADM do not require anymore 5gb of ram to be rendered
> (at level 0) and geoserver do not hangs anymore, I really like it.
>
> I will followup with some more details and measurements later but as you
> may immagine the speedup is obvious and the improve of performance depends
> mainly on the level of the simplification and the way we pregeneralize the
> store.
>
> The speedup in generating tiles is just a direct consequence of that.
>
>
>> Could be an oversight, but could have also been a conscious decision?
>> Maybe something related to producing
>> topologically valid geometries in output? And yet, the GEOMETRY_DISTANCE
>> hint is specifically designed to return
>>
>
> Well, good question, I'm looking for the author of that extension with no
> luck, who's the maintainer?
>
> Looking at this part of the presentation
> https://youtu.be/xdc67aZVO7E?t=530 it seems that those feature should be
> implemented into that extension, not sure why they are not there.
>
> Anyhow looking at the examples on how to build the pregeneralized
> geometries they are always generated using
> ST_SimplifyPreserveTopology(geom,...) which helps keeping the topology,
> even if onthefly simplification is not enabled.
>
> I'm blocked also by Atlassian Issue tracking login issue (PTDF-3856) so, I
> can wait for a clarifications by the author/maintainer, then I will share
> the implementation for your suggestions/comments and start adding tests for
> the PR.
>
> Thank you all and regards,
> Carlo
>
>
>
>> topologically valid geometries:
>>
>> /**
>>  * Asks a datastore having a vector pyramid (pre-generalized
>> geometries) to return the geometry
>>  * version whose points have been generalized less than the specified
>> distance (further
>>  * generalization might be performed by the client in memory).
>>  *
>>  * The geometries returned are supposed to be topologically valid.
>>  */
>> public static final Key GEOMETRY_DISTANCE = new Key(Double.class);
>>
>> Well, you know where to look and have familiarity with the source code...
>> PRs welcomed :-D
>>
>> Cheers
>> Andrea
>>
>> On Thu, May 14, 2020 at 6:45 PM carlo cancellieri <
>> geo.ccancelli...@gmail.com> wrote:
>>
>>> Dear list,
>>>  we're trying to configure a pregeneralized datastore 

[Geoserver-users] Monitor-hibernate plugin 2.18.x

2020-07-10 Thread carlo cancellieri
Hi List,
 I'm trying to use monitor-hibernate plugin on 2.18.x and I've some
problems in building it.

before I go too far on that, I was wondering if:

1. Are some of you successfully using it in production?
2. can't see more details on the doc but is it good enough for a production
level database?
3. is the persistence over DB blocking the requests or it's asynch like the
logs?
4. is it possible to configure the request processor queue (in size?)
4. if I didn't a mistake it's outdated so a pull request is needed, is
someone interested working with me on that?

I think that some dependency updates are needed, so I've started working on
it.
I've a 'working' branch for that but I still needs to pass tests (and
probably we've to update javaassist at least for openjdk 11).

5. what about MIXED mode (disappeared)?

My intention is to persist requests over a database and use that as source
for google Analytics to have statistics over area of interests and more in
SOFT real time.
Regards,
C.

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] VectorTile: missing tile <>

2020-06-24 Thread carlo cancellieri
Dear All,
 finally we tested the resulting geometries in the database and we don't
have any geometry with less than 4 points (so presimplification is not
affecting this), we also have published the same table with one geometry
reproducing the error (still too big to provide an example).

Going in deep we've seen that leveraging on the datastore simplification
(enabling it) is causing those error (invalid geometries) resulting in
missing tiles when asking for VectorTile format.

Support on the fly geometry simplification

This does not happen on the vanilla vector tile since it's still not
leveraging on that hints from the datasource, but with this
https://github.com/geoserver/geoserver/pull/4264 I'm able to test it also
with that support.

*Disabling that flag this error disappears and the tile is loaded.*

Looking at this (
http://www.tsusiatsoftware.net/jts/javadoc/com/vividsolutions/jts/simplify/DouglasPeuckerSimplifier.html
)
page I see that actually it's possible to obtain invalid geometries if
setEnsureValid(false).

Could that be the case?

When do we need so aggressive simplification? May we've to expose also that
flag or put it as default to true?

Maybe geoJson or other vectorial readers are currently supporting these
hints so they can be affected by the same problem?

Thanks for your thoughts,
Carlo

Il giorno lun 22 giu 2020 alle ore 22:18 carlo cancellieri <
geo.ccancelli...@gmail.com> ha scritto:

> Hi,
> definitely you are right!
>  let we check that too.
> we will test and report asap.
> C
>
>
> Il giorno lun 22 giu 2020 alle 22:05 Rahkonen Jukka (MML) <
> jukka.rahko...@maanmittauslaitos.fi> ha scritto:
>
>> Hi,
>>
>>
>>
>> You did not mention if you already checked that there are no polygons
>> with less than 4 points in your source data.
>>
>>
>>
>> -Jukka Rahkonen-
>>
>>
>>
>> *Lähettäjä:* carlo cancellieri 
>> *Lähetetty:* maanantai 22. kesäkuuta 2020 22.00
>> *Vastaanottaja:* GeoServer Users 
>> *Kopio:* Asif, Muhammad (CIO) 
>> *Aihe:* [Geoserver-users] VectorTile: missing tile <> 4 points, so orientation cannot be determined>>
>>
>>
>>
>> Dear List,
>>
>>  I'm still working over gadm vectortile layer (in background), and
>> randomly I'm getting the following error log (GEOTOOLS developer log level)
>> which leads to a missing tile even in the middle of screen.
>>
>> The layer generating that error is a 4326  not reprojected and
>> pregeneralized so I'm wondering if it's due to that:
>>
>>
>>
>> <<  Ring has fewer than 4 points, so orientation cannot be determined >>
>>
>>
>>
>> May I've to reduce pre-simplification (ST_SimplifyPreserveTopology), If
>> so maybe I've to use a more complex query to check the final result?
>>
>>
>>
>> Finally I'm also wondering if on the fly simplification can lead to the
>> same issue (randomly).
>>
>>
>>
>> I can reproduce that but the layer is huge and I can't share publicly the
>> URL so feel free to ask if someone desires to test it, I'll share that
>> privately.
>>
>>
>>
>> LOG:
>>
>> ---
>>
>>
>>
>> 2020-06-22 18:15:00,248 ERROR [org.geoserver.ows] -
>> java.lang.IllegalArgumentException: Ring has fewer than 4 points, so
>> orientation cannot be determined
>> at org.locationtech.jts.algorithm.Orientation.isCCW(Orientation.java:128)
>> at
>> no.ecc.vectortile.VectorTileEncoder.commands(VectorTileEncoder.java:398)
>> at
>> no.ecc.vectortile.VectorTileEncoder.commands(VectorTileEncoder.java:381)
>> at
>> no.ecc.vectortile.VectorTileEncoder.commands(VectorTileEncoder.java:363)
>> at no.ecc.vectortile.VectorTileEncoder.encode(VectorTileEncoder.java:316)
>> at
>> org.geoserver.wms.mapbox.MapBoxTileBuilder.build(MapBoxTileBuilder.java:59)
>> at
>> org.geoserver.wms.mapbox.MapBoxTileBuilder.build(MapBoxTileBuilder.java:23)
>> at
>> org.geoserver.wms.vector.VectorTileMapOutputFormat.produceMap(VectorTileMapOutputFormat.java:149)
>> at org.geoserver.wms.GetMap.executeInternal(GetMap.java:749)
>> at org.geoserver.wms.GetMap.run(GetMap.java:300)
>> at org.geoserver.wms.GetMap.run(GetMap.java:123)
>> at
>> org.geoserver.wms.DefaultWebMapService.getMap(DefaultWebMapService.java:246)
>> at jdk.internal.reflect.GeneratedMethodAccessor489.invoke(Unknown Source)
>> at
>> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>> at java.base/java.lang.reflect.M

Re: [Geoserver-users] VectorTile: missing tile <>

2020-06-22 Thread carlo cancellieri
Hi,
definitely you are right!
 let we check that too.
we will test and report asap.
C


Il giorno lun 22 giu 2020 alle 22:05 Rahkonen Jukka (MML) <
jukka.rahko...@maanmittauslaitos.fi> ha scritto:

> Hi,
>
>
>
> You did not mention if you already checked that there are no polygons with
> less than 4 points in your source data.
>
>
>
> -Jukka Rahkonen-
>
>
>
> *Lähettäjä:* carlo cancellieri 
> *Lähetetty:* maanantai 22. kesäkuuta 2020 22.00
> *Vastaanottaja:* GeoServer Users 
> *Kopio:* Asif, Muhammad (CIO) 
> *Aihe:* [Geoserver-users] VectorTile: missing tile < 4 points, so orientation cannot be determined>>
>
>
>
> Dear List,
>
>  I'm still working over gadm vectortile layer (in background), and
> randomly I'm getting the following error log (GEOTOOLS developer log level)
> which leads to a missing tile even in the middle of screen.
>
> The layer generating that error is a 4326  not reprojected and
> pregeneralized so I'm wondering if it's due to that:
>
>
>
> <<  Ring has fewer than 4 points, so orientation cannot be determined >>
>
>
>
> May I've to reduce pre-simplification (ST_SimplifyPreserveTopology), If so
> maybe I've to use a more complex query to check the final result?
>
>
>
> Finally I'm also wondering if on the fly simplification can lead to the
> same issue (randomly).
>
>
>
> I can reproduce that but the layer is huge and I can't share publicly the
> URL so feel free to ask if someone desires to test it, I'll share that
> privately.
>
>
>
> LOG:
>
> ---
>
>
>
> 2020-06-22 18:15:00,248 ERROR [org.geoserver.ows] -
> java.lang.IllegalArgumentException: Ring has fewer than 4 points, so
> orientation cannot be determined
> at org.locationtech.jts.algorithm.Orientation.isCCW(Orientation.java:128)
> at no.ecc.vectortile.VectorTileEncoder.commands(VectorTileEncoder.java:398)
> at no.ecc.vectortile.VectorTileEncoder.commands(VectorTileEncoder.java:381)
> at no.ecc.vectortile.VectorTileEncoder.commands(VectorTileEncoder.java:363)
> at no.ecc.vectortile.VectorTileEncoder.encode(VectorTileEncoder.java:316)
> at
> org.geoserver.wms.mapbox.MapBoxTileBuilder.build(MapBoxTileBuilder.java:59)
> at
> org.geoserver.wms.mapbox.MapBoxTileBuilder.build(MapBoxTileBuilder.java:23)
> at
> org.geoserver.wms.vector.VectorTileMapOutputFormat.produceMap(VectorTileMapOutputFormat.java:149)
> at org.geoserver.wms.GetMap.executeInternal(GetMap.java:749)
> at org.geoserver.wms.GetMap.run(GetMap.java:300)
> at org.geoserver.wms.GetMap.run(GetMap.java:123)
> at
> org.geoserver.wms.DefaultWebMapService.getMap(DefaultWebMapService.java:246)
> at jdk.internal.reflect.GeneratedMethodAccessor489.invoke(Unknown Source)
> at
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.base/java.lang.reflect.Method.invoke(Method.java:566)
> at
> org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)
> at
> org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198)
> at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
> at
> org.geoserver.kml.WebMapServiceKmlInterceptor.invoke(WebMapServiceKmlInterceptor.java:38)
> at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
> at
> org.geoserver.gwc.wms.CacheSeedingWebMapService.invoke(CacheSeedingWebMapService.java:55)
> at
> org.geoserver.gwc.wms.CacheSeedingWebMapService.invoke(CacheSeedingWebMapService.java:31)
> at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
> at
> org.geoserver.gwc.wms.CachingWebMapService.invoke(CachingWebMapService.java:61)
> at
> org.geoserver.gwc.wms.CachingWebMapService.invoke(CachingWebMapService.java:41)
> at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
> at
> org.geoserver.ows.util.RequestObjectLogger.invoke(RequestObjectLogger.java:50)
> at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
> at
> org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
> at com.sun.proxy.$Proxy46.getMap(Unknown Source)
> at jdk.internal.reflect.GeneratedMethodAccessor442.invoke(Unknown Source)
> at
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.base/java.lang.reflect.Method.invoke(Method.

[Geoserver-users] VectorTile: missing tile <>

2020-06-22 Thread carlo cancellieri
ocessorBase.run(SocketProcessorBase.java:49)
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: java.lang.IllegalStateException: Expected: RenderedImageMap, got
null
at
org.geoserver.gwc.layer.GeoServerTileLayer.dispatchGetMap(GeoServerTileLayer.java:709)
at
org.geoserver.gwc.layer.GeoServerTileLayer.getMetatilingReponse(GeoServerTileLayer.java:651)
... 108 more
2020-06-22 18:15:00,324 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION

Regards,
C.


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Vector tile: error when reprojecting from 3857 to 4326

2020-06-22 Thread carlo cancellieri
Dear Andrea,
 Thank you very much for your suggestion we really appreciate it.
I've not so much time to dedicate to contributions, my bad, but I've found
the time to properly report this issue here
https://osgeo-org.atlassian.net/projects/GEOS/issues/GEOS-9661
Thanks again,
Carlo


Il giorno ven 12 giu 2020 alle ore 18:48 Andrea Aime <
andrea.a...@geo-solutions.it> ha scritto:

> Hi Carlo,
> first off... don't save data with 3857, it's a horrible projection by any
> account, and only made for visualization.
> The cost of reprojection, when it comes to vector data, is small, normally
> not significant in the overall cost
> of a full request. If you have a case where it's important, I would like
> to hear about it ;-)
>
> More comments inline.
>
> On Sat, Jun 6, 2020 at 8:34 PM carlo cancellieri <
> geo.ccancelli...@gmail.com> wrote:
>
>>
>> I see that the problem is originated here:
>>
>>
>> https://github.com/geoserver/geoserver/blob/ad1c04e90e3556db398fb2bcdc65a66d3410da03/src/extension/vectortiles/src/main/java/org/geotools/renderer/lite/VectorMapRenderUtils.java#L235
>>
>> Where we calculate the resulting native BBOX from the requested one.
>> if the request is in 4326 a bbox of +/-90 degrees is perfectly acceptable
>> but when we try to obtain the native one we get an error since the 3857
>> does not support latitudes over or above 85 degrees (expressed in meters).
>>
>> I'd like to propose a solution to this but I'm also not sure which way
>> should I follow.
>>
>> I'm tempted to
>> 1. create the maximum extent for the source srs
>> 2. translate that to the declared srs (maxDeclaredBBOX) then
>> 3. if the request exceeds that maximum BBOX
>> 4. log a worn and cut the request query filter BBOX with the obtained
>> maxDeclaredBBOX.
>>
>> This may solve but seems quite complex.
>>
>
> It's actually not complex enough, the extent of the source CRS is often
> dictated by political/administrative reasons
> and has little relation with where the CRS math works. The good news is
> that the code to handle this is already available.
>
>
>> Since this does not happen in the PNG format I'm wondering how you
>> managed to solve this problem?
>>
>
> Because the rendering code uses advanced projection handing to build the
> queries:
>
> https://github.com/geotools/geotools/blob/master/modules/library/render/src/main/java/org/geotools/renderer/lite/StreamingRenderer.java#L1145
>
> Mind, in general you will get more than one BBOX back, the APH also
> handles dateline crossing. See also:
> https://media.ccc.de/v/bucharest-171-mapping-the-world-beyond-web-mercator
>
> Can I open a ticket for that?
>>
>
> Sure
>
> Cheers
> Andrea
>
> == GeoServer Professional Services from the experts! Visit
> http://goo.gl/it488V for more information. == Ing. Andrea Aime @geowolf
> Technical Lead GeoSolutions S.A.S. Via di Montramito 3/A 55054 Massarosa
> (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339 8844549
> http://www.geo-solutions.it http://twitter.com/geosolutions_it
> --- *Con riferimento
> alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
> Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
> circostanza inerente alla presente email (il suo contenuto, gli eventuali
> allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
> destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
> errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
> sarei comunque grato se potesse darmene notizia. This email is intended
> only for the person or entity to which it is addressed and may contain
> information that is privileged, confidential or otherwise protected from
> disclosure. We remind that - as provided by European Regulation 2016/679
> “GDPR” - copying, dissemination or use of this e-mail or the information
> herein by anyone other than the intended recipient is prohibited. If you
> have received this email by mistake, please notify us immediately by
> telephone or e-mail.*
>


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


[Geoserver-users] Vector tile: error when reprojecting from 3857 to 4326

2020-06-06 Thread carlo cancellieri
Hi,
 I'm experiencing an annoying issue with the vector tile extension (2.17.1
and 2.18-SNAPSHOT)

When we ask to reproject from 3857 to 4326 quite often (also due to the
tile buffer) we get an error as shown below, and as result some returned
geometries are not valid/cutted.

-
06 Jun 19:50:36 ERROR [geoserver.ows] -
org.geoserver.platform.ServiceException: Internal error
at org.geoserver.wms.GetMap.run(GetMap.java:134)
at
org.geoserver.wms.DefaultWebMapService.getMap(DefaultWebMapService.java:246)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
at
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

...

at org.geoserver.ows.Dispatcher.execute(Dispatcher.java:877)
at org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:265)
at
org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:177)
at org.geoserver.gwc.GWC.dispatchOwsRequest(GWC.java:1369)
at
org.geoserver.gwc.layer.GeoServerTileLayer.dispatchGetMap(GeoServerTileLayer.java:706)
at
org.geoserver.gwc.layer.GeoServerTileLayer.getMetatilingReponse(GeoServerTileLayer.java:651)
at
org.geoserver.gwc.layer.GeoServerTileLayer.getTile(GeoServerTileLayer.java:592)
at org.geowebcache.util.ResponseUtils.writeTile(ResponseUtils.java:100)

...

Caused by: org.geotools.data.DataSourceException: Had troubles handling
filter reprojection...
at
org.vfny.geoserver.global.GeoServerFeatureSource.reprojectFilter(GeoServerFeatureSource.java:485)
at
org.vfny.geoserver.global.GeoServerFeatureSource.getFeatures(GeoServerFeatureSource.java:394)
at
org.vfny.geoserver.global.GeoServerFeatureSource.getFeatures(GeoServerFeatureSource.java:71)
at
org.geoserver.wms.vector.VectorTileMapOutputFormat.produceMap(VectorTileMapOutputFormat.java:132)
at org.geoserver.wms.GetMap.executeInternal(GetMap.java:749)
at org.geoserver.wms.GetMap.run(GetMap.java:300)
at org.geoserver.wms.GetMap.run(GetMap.java:123)
... 141 more
Caused by: java.lang.RuntimeException:
org.geotools.referencing.operation.projection.ProjectionException: Latitude
90°00.0'N is too close to a pole.
at
org.geotools.filter.spatial.ReprojectingFilterVisitor.visit(ReprojectingFilterVisitor.java:132)
at org.geotools.filter.spatial.BBOXImpl.accept(BBOXImpl.java:143)
at
org.vfny.geoserver.global.GeoServerFeatureSource.reprojectFilter(GeoServerFeatureSource.java:478)
... 147 more
Caused by:
org.geotools.referencing.operation.projection.ProjectionException: Latitude
90°00.0'N is too close to a pole.
at
org.geotools.referencing.operation.projection.Mercator$Spherical.transformNormalized(Mercator.java:197)
at
org.geotools.referencing.operation.projection.MapProjection.transform(MapProjection.java:894)
at
org.geotools.referencing.operation.projection.MapProjection.transform(MapProjection.java:940)
at
org.geotools.referencing.operation.transform.AbstractMathTransform.transform(AbstractMathTransform.java:215)
at org.geotools.referencing.CRS.transform(CRS.java:1397)
at org.geotools.referencing.CRS.transform(CRS.java:1477)
at
org.geotools.geometry.jts.ReferencedEnvelope.transform(ReferencedEnvelope.java:624)
at
org.geotools.geometry.jts.ReferencedEnvelope.transform(ReferencedEnvelope.java:567)
at
org.geotools.filter.spatial.ReprojectingFilterVisitor.visit(ReprojectingFilterVisitor.java:130)
... 149 more
-


Followed by various:

Caused by: java.lang.IllegalStateException: Expected: RenderedImageMap, got
null
at
org.geoserver.gwc.layer.GeoServerTileLayer.dispatchGetMap(GeoServerTileLayer.java:709)
at
org.geoserver.gwc.layer.GeoServerTileLayer.getMetatilingReponse(GeoServerTileLayer.java:651)
... 111 more


I see that the problem is originated here:

https://github.com/geoserver/geoserver/blob/ad1c04e90e3556db398fb2bcdc65a66d3410da03/src/extension/vectortiles/src/main/java/org/geotools/renderer/lite/VectorMapRenderUtils.java#L235

Where we calculate the resulting native BBOX from the requested one.
if the request is in 4326 a bbox of +/-90 degrees is perfectly acceptable
but when we try to obtain the native one we get an error since the 3857
does not support latitudes over or above 85 degrees (expressed in meters).

I'd like to propose a solution to this but I'm also not sure which way
should I follow.

I'm tempted to
1. create the maximum extent for the source srs
2. translate that to the declared srs (maxDeclaredBBOX) then
3. if the request exceeds that maximum BBOX
4. log a worn and cut the request query filter BBOX with the obtained
maxDeclaredBBOX.

This may solve but seems quite complex.

Since this does not happen in the PNG format I'm wondering how you managed
to solve this problem?

Can you point me to the right piece of code?

Can I open a ticket for that?

Thanks,
Carlo

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
_

[Geoserver-users] PreGeneralized: Unable to point to a jdbc.properties file as dataSourceName

2020-06-03 Thread carlo cancellieri
Hi List,
 we'd like to configure a pregeneralized feature store without publishing
the postgis datastore and layers pointing the xml configuration directly to
a properties file with the JDBC/JNDI configuration.

This is the GEOSERVER_DATA_DIR/gdata/gadm/gadm.xml :
-


   
...

---

Close to that file we've also the
GEOSERVER_DATA_DIR/gdata/gadm/gadm.properties
---
SPI=org.geotools.data.postgis.PostgisNGDataStoreFactory
host=X
port=
database=XXX
schema=gadm
user=XXX
passwd=XXX
Loose\ bbox=true
Estimated\ extends=false
validate\ connections=true
Connection\ timeout=10
preparedStatements=true
---

Now the store has been created and we see the list of layers to publish.

When we try to publish a layer we get in the logs
(GEOTOOLS_DEVELOPER.level):
---
2020-06-03 16:11:40,557 INFO [org.geoserver.data.gen.DSFinderRepository] -
Not in Geoserver catalog: file:gdata/gadm/gadm.properties
---

Seems that the attribute  dataSourceName is not recognized as path but as
store name.

Other tests we did with not success:
- all the possible path combinations (f.e. the full path or the local one
./ ) but nothing.
- use a JNDI configuration

The JDBC configuration is correct (we've checked it dozen of thimes)
The gadm.xml file is correct (we've used it with same tables publishing the
feature store and pointing to it as source).

Any known issue about that or evident mistake? We are getting crazy...

Thank you,
Carlo


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Pregeneralized DataStore and Vector-tyle

2020-05-27 Thread carlo cancellieri
Dear Andrea and ML,

The vector tiles plugin should probably be modified, although I'm wondering
> why this was not done when it was written.
>

I've just completed a first patch having a great speedup improvement of
performances and now GADM do not require anymore 5gb of ram to be rendered
(at level 0) and geoserver do not hangs anymore, I really like it.

I will followup with some more details and measurements later but as you
may immagine the speedup is obvious and the improve of performance depends
mainly on the level of the simplification and the way we pregeneralize the
store.

The speedup in generating tiles is just a direct consequence of that.


> Could be an oversight, but could have also been a conscious decision?
> Maybe something related to producing
> topologically valid geometries in output? And yet, the GEOMETRY_DISTANCE
> hint is specifically designed to return
>

Well, good question, I'm looking for the author of that extension with no
luck, who's the maintainer?

Looking at this part of the presentation https://youtu.be/xdc67aZVO7E?t=530
it seems that those feature should be implemented into that extension, not
sure why they are not there.

Anyhow looking at the examples on how to build the pregeneralized
geometries they are always generated using
ST_SimplifyPreserveTopology(geom,...) which helps keeping the topology,
even if onthefly simplification is not enabled.

I'm blocked also by Atlassian Issue tracking login issue (PTDF-3856) so, I
can wait for a clarifications by the author/maintainer, then I will share
the implementation for your suggestions/comments and start adding tests for
the PR.

Thank you all and regards,
Carlo



> topologically valid geometries:
>
> /**
>  * Asks a datastore having a vector pyramid (pre-generalized
> geometries) to return the geometry
>  * version whose points have been generalized less than the specified
> distance (further
>  * generalization might be performed by the client in memory).
>  *
>  * The geometries returned are supposed to be topologically valid.
>  */
> public static final Key GEOMETRY_DISTANCE = new Key(Double.class);
>
> Well, you know where to look and have familiarity with the source code...
> PRs welcomed :-D
>
> Cheers
> Andrea
>
> On Thu, May 14, 2020 at 6:45 PM carlo cancellieri <
> geo.ccancelli...@gmail.com> wrote:
>
>> Dear list,
>>  we're trying to configure a pregeneralized datastore to speedup the
>> vector tyles cache generation with no luck.
>>
>> Actually asking in layerpreview for a simple application/openlayer
>> everything works very well.
>> ---
>> 14 May 20:45:36 DEBUG [renderer.lite] - Computed scale denominator:
>> 2.7922819993363017E8
>> 14 May 20:45:36 DEBUG [renderer.lite] - creating rules for scale
>> denominator - 279,228,199.934
>> 14 May 20:45:36 DEBUG [data.util] - CRSConverterFactory can be applied
>> from Strings to CRS  only.
>> 14 May 20:45:36 DEBUG [data.util] - InterpolationConverterFactory can be
>> applied from Strings to Interpolation only.
>> 14 May 20:45:36 DEBUG [renderer.lite] - Processing 1 stylers for
>> n50:gadm36_0_3857_gen
>> 14 May 20:45:36 DEBUG [renderer.lite] - Expanding rendering area by 2
>> pixels to consider stroke width
>> 14 May 20:45:36 WARN [operation.projection] - Possible use of "Popular
>> Visualisation Pseudo Mercator" projection outside its valid area.
>> Longitude 2147483287░00.0'W is out of range (▒180░).
>> 14 May 20:45:36 DEBUG [renderer.lite] - Querying layer
>> n50:gadm36_0_3857_gen with bbox: ReferencedEnvelope[-2.4862478922090434E7 :
>> 2.4862478922090434E7, -3.604277604743299E7 : 2.4315191650220517E7]
>> 14 May 20:45:36 TRACE [util.factory] - ENTRY  (GeometryFactory,
>> JTS_GEOMETRY_FACTORY)
>> 14 May 20:45:36 TRACE [util.factory] - RETURN (GeometryFactory,
>> JTS_GEOMETRY_FACTORY): found implementation Optional.
>> 14 May 20:45:36 DEBUG [data.gen] - Hint geometry distance:
>> 62547.11678513289
>> 14 May 20:45:36 DEBUG [data.gen] - Hint geometry distance:
>> 62547.11678513289
>> 14 May 20:45:36 INFO [data.gen] - Using generalizsation: postgis_n50
>> gadm36_0_3857 geom500 500.0
>> 14 May 20:45:36 DEBUG [geotools.jdbc] - CREATE CONNECTION
>> 14 May 20:45:36 DEBUG [data.jdbc] - exporting PropertyName
>> 14 May 20:45:36 DEBUG [data.util] - CRSConverterFactory can be applied
>> from Strings to CRS  only.
>> 14 May 20:45:36 DEBUG [data.util] - InterpolationConverterFactory can be
>> applied from Strings to Interpolation only.
>> 14 May 20:45:36 DEBUG [geotools.jdbc] - SELECT
>> "gid",ST_AsBinary("geom500") as "geom500&

Re: [Geoserver-users] Fwd: Isolated workspace possible issue with VectorTyle + GWC

2020-05-27 Thread carlo cancellieri
Dear All,
 thanks for your reply, so as far as I've understood this problem is
related to the **integration** between GWC (embedded) and geoserver.

GWC do not have any knowledge about the workspaces this is why it works
only if the workspace is selected using the path and not the layername.

What do you think if we configure the integrated gwc to leverage on the
path rather than on the workspace:layername?

If this is acceptable for you, do you think that a patch is possible?  I
haven't seen the code so I don't really know the effort needed, if it's not
so complicated, maybe I can help.

Regards,
Carlo

GWC services, like WMTS and TMS, try to look up the cached layers by their
> ID, but if the workspace they belong too its isolated, that lookup will
> only succeed if done in the context of the isolated workspace virtual
> end-point.
> Example of global access and an workspace virtual en-point access (in that
> order):
>
>
>- http://localhost:8080/geoserver/gwc/service/wmts?*layer=topp:states*
>
> &style=&tilematrixset=EPSG:4326&Service=WMTS&Request=GetTile&Version=1.0.0&Format=image/png&TileMatrix=EPSG:4326:5&TileCol=15&TileRow=8
>- http://localhost:8080/geoserver/*topp*/gwc/service/wmts?
>*layer=states*
>
> &style=&tilematrixset=EPSG:4326&Service=WMTS&Request=GetTile&Version=1.0.0&Format=image/png&TileMatrix=EPSG:4326:5&TileCol=15&TileRow=8
>
>
> This where the access of the layer its checked [1] by the isolated
> workspaces code.
>
> I identified the following issue; Looks like both WMTS and TDMS when
> building their capabilities document get all the layers by their ID's and
> assume that they should be available, if not then its because the GWC
> configuration got out of sync.
> Their code needs to be updated and recognize the situation where certain
> layers are not available because they belong to an isolated workspace and
> the GetCapabilities request being answer was issued globally or in a
> different workspace end-point.
>
> Hope this helps,
> Nuno Oliveira
>
> [1]
> https://github.com/geoserver/geoserver/blob/732e7b4bfacdf7fe7180c3d7ba2868ea3650c24c/src/main/src/main/java/org/geoserver/catalog/impl/IsolatedCatalogFacade.java#L188-L190
>
> On Thu, 2020-04-30 at 16:34 -0700, Jody Garnett wrote:
>
> I am sharing some initial thoughts, just to share my understanding:
>
> - GWC does not have a built-in concept of namespace, if you look you can
> see it generates something like prefix_layer_name which works well in many
> cases :)
> - XML namespaces (and prefix) is used to make sure we are specific when
> talking about what a data means, allowing us to locate the schema used for
> validation
> - isolated namespaces are intended to be used when the schema is defined
> externally, and when there is no "global service" so the content is only
> available via a workspace specific WFS endpoint
>
> So I think this setup, has been focused on publishing XML content without
> conflict, and has not deeply considered WCS/WMS (which is possible) or WMTS
> (which may not even offer a virtual service for unambiguous access). Right
> now we "run" an emended GWC for publishing tileset, think to support your
> use case we would need to run one per virtual workspace. So possible but
> not included in the present design.
>
> I did not work directly on this integration so I would need to dive into
> the code to confirm the above speculation.
> --
> Jody Garnett
>
>
> On Wed, 29 Apr 2020 at 23:31, carlo cancellieri <
> geo.ccancelli...@gmail.com> wrote:
>
> Jody,
>
> Do you have a stack trace or anything else to go on Carlo? I have not used
> isolated workspaces yet
>
>
> Yep, fwding the message may have hidden the end of the mail, please see
> below.
>
> myself, does it work if the workspace is not isolated?
>
>
> Yes, disabling isolation ‘solved’
>
> Carlo
>
> --
> Jody Garnett
>
>
> On Wed, 29 Apr 2020 at 13:13, carlo cancellieri <
> geo.ccancelli...@gmail.com> wrote:
>
>
> Dear List,
>  I'm trying to use extensively isolated workspace and I've found a
> possible issue which I'm going to share with you before we open a ticket:
> Steps:
> Use geoserver 2.17.0
> create an isolated workspace
> add a jndi store
> load a layer (I'm using gadm level0)
> install VectorTyle extension
> enable the vector tyle 'format' over that layer
>
> now I'm having problem to use embedded GWC, fe I'm not able to see the:
> https://xx/x/gwc/service/tms/1.0.0
>
> trying to retrieve that or other requests I got errors like:
> DEBUG [util.R

Re: [Geoserver-users] Pregeneralized DataStore and Vector-tyle

2020-05-16 Thread carlo cancellieri
Dear Andrea,
 Thank you very mutch for your clarification!
 Looking at the logs I was suspecting that but I'm not sure if it was
developed in this way for some reason, f.e. we tested also GeoJSON with
same result (no hint passed) so I was thinking that adding support for
those hints may cause some side effects when using WFS (using those
DataStore).
If the activity will be approved by our management I'll proceed following
your indications to prepare a PR at least for the vector-tyle extension
since it will bring a great speedup improvement when generating new tiles.
Best regards,
C.

Il giorno sab 16 mag 2020 alle ore 10:39 Andrea Aime <
andrea.a...@geo-solutions.it> ha scritto:

> Hi Carlo,
> by what I can see, the vector tiles plugin is not passing down the target
> geometry resolution, it's not providing
> neither the Hints.GEOMETRY_DISTANCE nor the Hints.GEOMETRY_SIMPLIFICATION,
> so the pre-generalized
> store cannot choose which overview level to choose.
>
> The vector tiles plugin should probably be modified, although I'm
> wondering why this was not done when it was written.
> Could be an oversight, but could have also been a conscious decision?
> Maybe something related to producing
> topologically valid geometries in output? And yet, the GEOMETRY_DISTANCE
> hint is specifically designed to return
> topologically valid geometries:
>
> /**
>  * Asks a datastore having a vector pyramid (pre-generalized
> geometries) to return the geometry
>  * version whose points have been generalized less than the specified
> distance (further
>  * generalization might be performed by the client in memory).
>  *
>  * The geometries returned are supposed to be topologically valid.
>  */
> public static final Key GEOMETRY_DISTANCE = new Key(Double.class);
>
> Well, you know where to look and have familiarity with the source code...
> PRs welcomed :-D
>
> Cheers
> Andrea
>
> On Thu, May 14, 2020 at 6:45 PM carlo cancellieri <
> geo.ccancelli...@gmail.com> wrote:
>
>> Dear list,
>>  we're trying to configure a pregeneralized datastore to speedup the
>> vector tyles cache generation with no luck.
>>
>> Actually asking in layerpreview for a simple application/openlayer
>> everything works very well.
>> ---
>> 14 May 20:45:36 DEBUG [renderer.lite] - Computed scale denominator:
>> 2.7922819993363017E8
>> 14 May 20:45:36 DEBUG [renderer.lite] - creating rules for scale
>> denominator - 279,228,199.934
>> 14 May 20:45:36 DEBUG [data.util] - CRSConverterFactory can be applied
>> from Strings to CRS  only.
>> 14 May 20:45:36 DEBUG [data.util] - InterpolationConverterFactory can be
>> applied from Strings to Interpolation only.
>> 14 May 20:45:36 DEBUG [renderer.lite] - Processing 1 stylers for
>> n50:gadm36_0_3857_gen
>> 14 May 20:45:36 DEBUG [renderer.lite] - Expanding rendering area by 2
>> pixels to consider stroke width
>> 14 May 20:45:36 WARN [operation.projection] - Possible use of "Popular
>> Visualisation Pseudo Mercator" projection outside its valid area.
>> Longitude 2147483287░00.0'W is out of range (▒180░).
>> 14 May 20:45:36 DEBUG [renderer.lite] - Querying layer
>> n50:gadm36_0_3857_gen with bbox: ReferencedEnvelope[-2.4862478922090434E7 :
>> 2.4862478922090434E7, -3.604277604743299E7 : 2.4315191650220517E7]
>> 14 May 20:45:36 TRACE [util.factory] - ENTRY  (GeometryFactory,
>> JTS_GEOMETRY_FACTORY)
>> 14 May 20:45:36 TRACE [util.factory] - RETURN (GeometryFactory,
>> JTS_GEOMETRY_FACTORY): found implementation Optional.
>> 14 May 20:45:36 DEBUG [data.gen] - Hint geometry distance:
>> 62547.11678513289
>> 14 May 20:45:36 DEBUG [data.gen] - Hint geometry distance:
>> 62547.11678513289
>> 14 May 20:45:36 INFO [data.gen] - Using generalizsation: postgis_n50
>> gadm36_0_3857 geom500 500.0
>> 14 May 20:45:36 DEBUG [geotools.jdbc] - CREATE CONNECTION
>> 14 May 20:45:36 DEBUG [data.jdbc] - exporting PropertyName
>> 14 May 20:45:36 DEBUG [data.util] - CRSConverterFactory can be applied
>> from Strings to CRS  only.
>> 14 May 20:45:36 DEBUG [data.util] - InterpolationConverterFactory can be
>> applied from Strings to Interpolation only.
>> 14 May 20:45:36 DEBUG [geotools.jdbc] - SELECT
>> "gid",ST_AsBinary("geom500") as "geom500" FROM "public"."gadm36_0_3857"
>> WHERE "geom" && ST_GeomFromWKB(?, 3857)
>> 14 May 20:45:36 DEBUG [geotools.jdbc] - 1 = POLYGON ((-24862478.922090434
>> -19971868.88040857, 24862478.922090434 -19971868.88040857,
>> 24862478.922090434 19971868.880408563, -2486247

[Geoserver-users] Pregeneralized DataStore and Vector-tyle

2020-05-14 Thread carlo cancellieri
Dear list,
 we're trying to configure a pregeneralized datastore to speedup the vector
tyles cache generation with no luck.

Actually asking in layerpreview for a simple application/openlayer
everything works very well.
---
14 May 20:45:36 DEBUG [renderer.lite] - Computed scale denominator:
2.7922819993363017E8
14 May 20:45:36 DEBUG [renderer.lite] - creating rules for scale
denominator - 279,228,199.934
14 May 20:45:36 DEBUG [data.util] - CRSConverterFactory can be applied from
Strings to CRS  only.
14 May 20:45:36 DEBUG [data.util] - InterpolationConverterFactory can be
applied from Strings to Interpolation only.
14 May 20:45:36 DEBUG [renderer.lite] - Processing 1 stylers for
n50:gadm36_0_3857_gen
14 May 20:45:36 DEBUG [renderer.lite] - Expanding rendering area by 2
pixels to consider stroke width
14 May 20:45:36 WARN [operation.projection] - Possible use of "Popular
Visualisation Pseudo Mercator" projection outside its valid area.
Longitude 2147483287░00.0'W is out of range (▒180░).
14 May 20:45:36 DEBUG [renderer.lite] - Querying layer
n50:gadm36_0_3857_gen with bbox: ReferencedEnvelope[-2.4862478922090434E7 :
2.4862478922090434E7, -3.604277604743299E7 : 2.4315191650220517E7]
14 May 20:45:36 TRACE [util.factory] - ENTRY  (GeometryFactory,
JTS_GEOMETRY_FACTORY)
14 May 20:45:36 TRACE [util.factory] - RETURN (GeometryFactory,
JTS_GEOMETRY_FACTORY): found implementation Optional.
14 May 20:45:36 DEBUG [data.gen] - Hint geometry distance: 62547.11678513289
14 May 20:45:36 DEBUG [data.gen] - Hint geometry distance: 62547.11678513289
14 May 20:45:36 INFO [data.gen] - Using generalizsation: postgis_n50
gadm36_0_3857 geom500 500.0
14 May 20:45:36 DEBUG [geotools.jdbc] - CREATE CONNECTION
14 May 20:45:36 DEBUG [data.jdbc] - exporting PropertyName
14 May 20:45:36 DEBUG [data.util] - CRSConverterFactory can be applied from
Strings to CRS  only.
14 May 20:45:36 DEBUG [data.util] - InterpolationConverterFactory can be
applied from Strings to Interpolation only.
14 May 20:45:36 DEBUG [geotools.jdbc] - SELECT "gid",ST_AsBinary("geom500")
as "geom500" FROM "public"."gadm36_0_3857" WHERE "geom" &&
ST_GeomFromWKB(?, 3857)
14 May 20:45:36 DEBUG [geotools.jdbc] - 1 = POLYGON ((-24862478.922090434
-19971868.88040857, 24862478.922090434 -19971868.88040857,
24862478.922090434 19971868.880408563, -24862478.922090434
19971868.880408563, -24862478.922090434 -19971868.88040857))
14 May 20:45:48 DEBUG [geotools.jdbc] - CLOSE CONNECTION
-

Once we try to ask for a mapbox vector tile (or geoJson) to WMS using the
layerpreview page, seems that the hint for the geometry distance is not
used as well.


14 May 20:49:34 DEBUG [geoserver.wms] - setting up map
14 May 20:49:34 DEBUG [data.gen] - Hint for geometry simplification in
query, fallback to base feature
14 May 20:49:34 DEBUG [data.gen] - No hint for geometry distance in query,
fallback to base feature
14 May 20:49:34 DEBUG [data.gen] - Hint for geometry simplification in
query, fallback to base feature
14 May 20:49:34 DEBUG [data.gen] - No hint for geometry distance in query,
fallback to base feature
14 May 20:49:34 DEBUG [geotools.jdbc] - CREATE CONNECTION
14 May 20:49:34 DEBUG [data.jdbc] - exporting PropertyName
14 May 20:49:34 DEBUG [data.util] - CRSConverterFactory can be applied from
Strings to CRS  only.
14 May 20:49:34 DEBUG [data.util] - InterpolationConverterFactory can be
applied from Strings to Interpolation only.
14 May 20:49:34 DEBUG [geotools.jdbc] - SELECT
"gid","gid_0","name_0",ST_AsBinary("geom") as "geom","fid" FROM
"public"."gadm36_0_3857" WHERE "geom" && ST_GeomFromWKB(?, 3857)
14 May 20:49:34 DEBUG [geotools.jdbc] - 1 = POLYGON ((-20100916.899652816
-30304381.79087722, 20100916.899652816 -30304381.79087722,
20100916.899652816 18516704.85076622, -20100916.899652816
18516704.85076622, -20100916.899652816 -30304381.79087722))
14 May 20:52:01 DEBUG [geotools.jdbc] - CLOSE CONNECTION4
--

Is this behaviour related to this thread?:
https://subscription.packtpub.com/book/application_development/9781783289615/1/ch01lvl1sec18/improving-performance-with-pregeneralized-features


If so, which is the best way to sort it out (use pregeneralized to speedup
the vector tyle generation)?

Our table has 4 geometry columns for each feature, may we can try to select
them using an appropriate style?

Thank you for your hints!

C.

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
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.

Re: [Geoserver-users] JDBCConfig in the cluster

2020-04-30 Thread carlo cancellieri
Dear Andrea,
 Following up your mail, yes, probably you where right about multiple jars
into lib/ folder, so we decided to perform a clean test from scratch.

I've asked to perform a clean test with the geoserver-2.17.0, we are over
windows10 with oracle jdk8 and tomcat-8 (but also tested with tomcat-9).

We are able to start geoserver without that plugin.

If we install JMS Cluster plugin we drop into missing library as shown in
the attached logs (and below):

> java.lang.NoClassDefFoundError:
org/apache/commons/pool2/KeyedPooledObjectFactory

Not sure why but maybe something has changed in the dependency tree or in
the default ActiveMQ configurations.

I apologize but we could not perfom other tests over this issue.

Cheers,
C.

Il giorno mer 29 apr 2020 alle ore 18:17 carlo cancellieri <
carlo.cancelli...@fao.org> ha scritto:

> I’ll let u know, let me Ask for confirmation to the tester.
> C
>
> Il giorno mer 29 apr 2020 alle 17:19 Andrea Aime <
> andrea.a...@geo-solutions.it> ha scritto:
>
>> On Wed, Apr 29, 2020 at 4:38 PM carlo cancellieri <
>> carlo.cancelli...@fao.org> wrote:
>>
>>> Dear List,
>>>  I know it's unmantained so this is just to keep you informed that JMS
>>> module is not working anymore on 2.17.x it fail to start throwing exception
>>> cause:
>>> Multiple beans of type org.geoserver.config.GeoServerLoader
>>>
>>
>> That is odd, I recently did a performance test comparing JMS config,
>> JDBCConfig and Stratus, they all started correctly.
>> Maybe you had multiple clustering solutions in the same GeoServer?
>>
>> 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
>> <https://www.google.com/maps/search/Via+di+Montramito+3%2FA%0D%0A55054++Massarosa?entry=gmail&source=g>
>> (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339 8844549
>> http://www.geo-solutions.it http://twitter.com/geosolutions_it
>> --- *Con riferimento
>> alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
>> Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
>> circostanza inerente alla presente email (il suo contenuto, gli eventuali
>> allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
>> destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
>> errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
>> sarei comunque grato se potesse darmene notizia. This email is intended
>> only for the person or entity to which it is addressed and may contain
>> information that is privileged, confidential or otherwise protected from
>> disclosure. We remind that - as provided by European Regulation 2016/679
>> “GDPR” - copying, dissemination or use of this e-mail or the information
>> herein by anyone other than the intended recipient is prohibited. If you
>> have received this email by mistake, please notify us immediately by
>> telephone or e-mail.*
>> ___
>> Geoserver-users mailing list
>>
>> Please make sure you read the following two resources before posting to
>> this list:
>> - Earning your support instead of buying it, but Ian Turton:
>> http://www.ianturton.com/talks/foss4g.html#/
>> - The GeoServer user list posting guidelines:
>> http://geoserver.org/comm/userlist-guidelines.html
>>
>> If you want to request a feature or an improvement, also see this:
>> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>>
>>
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
> --
>
> --
> Mr. Carlo Cancellieri
> *skype*: ccancellieri
> *Twitter*: @cancellieric
> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>


-- 

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/


tomcat-9-geoserver.log
Description: Binary data


tomcat-9-catalina.2020-04-30.log
Description: Binary data
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Fwd: Isolated workspace possible issue with VectorTyle + GWC

2020-04-29 Thread carlo cancellieri
Jody,

Do you have a stack trace or anything else to go on Carlo? I have not used
> isolated workspaces yet
>

Yep, fwding the message may have hidden the end of the mail, please see
below.

myself, does it work if the workspace is not isolated?
>

Yes, disabling isolation ‘solved’

Carlo

--
> Jody Garnett
>
>
> On Wed, 29 Apr 2020 at 13:13, carlo cancellieri <
> geo.ccancelli...@gmail.com> wrote:
>
>> Dear List,
>>  I'm trying to use extensively isolated workspace and I've found a
>> possible issue which I'm going to share with you before we open a ticket:
>> Steps:
>> Use geoserver 2.17.0
>> create an isolated workspace
>> add a jndi store
>> load a layer (I'm using gadm level0)
>> install VectorTyle extension
>> enable the vector tyle 'format' over that layer
>>
>> now I'm having problem to use embedded GWC, fe I'm not able to see the:
>> https://xx/x/gwc/service/tms/1.0.0
>>
>> trying to retrieve that or other requests I got errors like:
>> DEBUG [util.ResponseUtils] - Could not locate a layer or layer group with
>> id LayerInfoImpl-3bba14cf:1711882e14e:-11bb within GeoServer configuration,
>> the GWC configuration seems to be out of synch
>> 2020-04-29 16:37:14,813 ERROR [geowebcache.GeoWebCacheDispatcher] -
>> Request failed
>> java.lang.IllegalStateException: Could not locate a layer or layer group
>> with id LayerInfoImpl-3bba14cf:1711882e14e:-11bb within GeoServer
>> configuration, the GWC configuration seems to be out of synch
>> at
>> org.geoserver.gwc.layer.GeoServerTileLayer.lambda$getPublishedInfo$0(GeoServerTileLayer.java:396)
>> at
>> java.base/java.util.concurrent.atomic.AtomicReference.accumulateAndGet(AtomicReference.java:263)
>> at
>> org.geoserver.gwc.layer.GeoServerTileLayer.getPublishedInfo(GeoServerTileLayer.java:386)
>> at
>> org.geoserver.gwc.layer.GeoServerTileLayer.isEnabled(GeoServerTileLayer.java:307)
>> at
>> org.geowebcache.service.tms.TMSDocumentFactory.getTileMapServiceDoc(TMSDocumentFactory.java:138)
>> at
>> org.geowebcache.service.tms.TMSService.handleRequest(TMSService.java:251)
>> at
>> org.geowebcache.service.tms.TMSService$$FastClassBySpringCGLIB$$34b3521.invoke()
>> at
>> org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
>> at
>> org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:750)
>> at
>> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
>> at
>> org.geoserver.gwc.config.GWCServiceEnablementInterceptor.invoke(GWCServiceEnablementInterceptor.java:58)
>> at
>> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
>> at
>> org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
>> at
>> org.geowebcache.service.tms.TMSService$$EnhancerBySpringCGLIB$$136fc4fa.handleRequest()
>> at
>> org.geowebcache.GeoWebCacheDispatcher.handleServiceRequest(GeoWebCacheDispatcher.java:406)
>> at
>> org.geowebcache.GeoWebCacheDispatcher.handleRequestInternal(GeoWebCacheDispatcher.java:268)
>> at
>> org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:177)
>> at
>> org.geoserver.gwc.dispatch.GwcServiceProxy.dispatch(GwcServiceProxy.java:80)
>> at jdk.internal.reflect.GeneratedMethodAccessor853.invoke(Unknown
>> Source)
>> at
>> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>> at java.base/java.lang.reflect.Method.invoke(Method.java:566)
>> ...
>>
>> Note that I've also deleted that file multiple times recreating it with
>> the UI with no success.
>>
>> It started working once workspace isolation has been disabled.
>>
>> Could you confirm? May I need to open a ticket?
>>
>> Thanks
>> C.
>>
>> --
>> Mr. Carlo Cancellieri
>> *skype*: ccancellieri
>> *Twitter*: @cancellieric
>> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>>
> ___
>> 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 I

[Geoserver-users] Fwd: Isolated workspace possible issue with VectorTyle + GWC

2020-04-29 Thread carlo cancellieri
Dear List,
 I'm trying to use extensively isolated workspace and I've found a possible
issue which I'm going to share with you before we open a ticket:
Steps:
Use geoserver 2.17.0
create an isolated workspace
add a jndi store
load a layer (I'm using gadm level0)
install VectorTyle extension
enable the vector tyle 'format' over that layer

now I'm having problem to use embedded GWC, fe I'm not able to see the:
https://xx/x/gwc/service/tms/1.0.0

trying to retrieve that or other requests I got errors like:
DEBUG [util.ResponseUtils] - Could not locate a layer or layer group with
id LayerInfoImpl-3bba14cf:1711882e14e:-11bb within GeoServer configuration,
the GWC configuration seems to be out of synch
2020-04-29 16:37:14,813 ERROR [geowebcache.GeoWebCacheDispatcher] - Request
failed
java.lang.IllegalStateException: Could not locate a layer or layer group
with id LayerInfoImpl-3bba14cf:1711882e14e:-11bb within GeoServer
configuration, the GWC configuration seems to be out of synch
at
org.geoserver.gwc.layer.GeoServerTileLayer.lambda$getPublishedInfo$0(GeoServerTileLayer.java:396)
at
java.base/java.util.concurrent.atomic.AtomicReference.accumulateAndGet(AtomicReference.java:263)
at
org.geoserver.gwc.layer.GeoServerTileLayer.getPublishedInfo(GeoServerTileLayer.java:386)
at
org.geoserver.gwc.layer.GeoServerTileLayer.isEnabled(GeoServerTileLayer.java:307)
at
org.geowebcache.service.tms.TMSDocumentFactory.getTileMapServiceDoc(TMSDocumentFactory.java:138)
at
org.geowebcache.service.tms.TMSService.handleRequest(TMSService.java:251)
at
org.geowebcache.service.tms.TMSService$$FastClassBySpringCGLIB$$34b3521.invoke()
at
org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:750)
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
at
org.geoserver.gwc.config.GWCServiceEnablementInterceptor.invoke(GWCServiceEnablementInterceptor.java:58)
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
at
org.geowebcache.service.tms.TMSService$$EnhancerBySpringCGLIB$$136fc4fa.handleRequest()
at
org.geowebcache.GeoWebCacheDispatcher.handleServiceRequest(GeoWebCacheDispatcher.java:406)
at
org.geowebcache.GeoWebCacheDispatcher.handleRequestInternal(GeoWebCacheDispatcher.java:268)
at
org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:177)
at
org.geoserver.gwc.dispatch.GwcServiceProxy.dispatch(GwcServiceProxy.java:80)
at jdk.internal.reflect.GeneratedMethodAccessor853.invoke(Unknown
Source)
at
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
...

Note that I've also deleted that file multiple times recreating it with the
UI with no success.

It started working once workspace isolation has been disabled.

Could you confirm? May I need to open a ticket?

Thanks
C.

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] JDBCConfig in the cluster

2020-04-29 Thread carlo cancellieri
I’ll let u know, let me Ask for confirmation to the tester.
C

Il giorno mer 29 apr 2020 alle 17:19 Andrea Aime <
andrea.a...@geo-solutions.it> ha scritto:

> On Wed, Apr 29, 2020 at 4:38 PM carlo cancellieri <
> carlo.cancelli...@fao.org> wrote:
>
>> Dear List,
>>  I know it's unmantained so this is just to keep you informed that JMS
>> module is not working anymore on 2.17.x it fail to start throwing exception
>> cause:
>> Multiple beans of type org.geoserver.config.GeoServerLoader
>>
>
> That is odd, I recently did a performance test comparing JMS config,
> JDBCConfig and Stratus, they all started correctly.
> Maybe you had multiple clustering solutions in the same GeoServer?
>
> 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
> <https://www.google.com/maps/search/Via+di+Montramito+3%2FA%0D%0A55054++Massarosa?entry=gmail&source=g>
> (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339 8844549
> http://www.geo-solutions.it http://twitter.com/geosolutions_it
> --- *Con riferimento
> alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
> Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
> circostanza inerente alla presente email (il suo contenuto, gli eventuali
> allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
> destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
> errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
> sarei comunque grato se potesse darmene notizia. This email is intended
> only for the person or entity to which it is addressed and may contain
> information that is privileged, confidential or otherwise protected from
> disclosure. We remind that - as provided by European Regulation 2016/679
> “GDPR” - copying, dissemination or use of this e-mail or the information
> herein by anyone other than the intended recipient is prohibited. If you
> have received this email by mistake, please notify us immediately by
> telephone or e-mail.*
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
-- 

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] JDBCConfig in the cluster

2020-04-29 Thread carlo cancellieri
Dear Niels,
 We're currently testing JDBCConfig and Hazelcast (which does not appear on
the documentation page list but we've found that into the extension
download page) and they are working quite well.
What is still unclear is the need to use JDBCStore what can you say
about that.

Dear List,
 I know it's unmantained so this is just to keep you informed that JMS
module is not working anymore on 2.17.x it fail to start throwing exception
cause:
Multiple beans of type org.geoserver.config.GeoServerLoader



Il giorno lun 27 apr 2020 alle ore 13:51 Niels Charlier via Geoserver-users
 ha scritto:

> Hello Carlo,
>
> We use jdbcconfig in combination with jdbcstore and hzcluster in a
> production environment.
>
> I have been doing several improvements in the last few years in terms of
> efficiency, bugs and concurrency as well (using semaphores).
>
> Do you have any more specific questions?
>
> Kind Regards
>
> Niels
> On 27/04/2020 11:21, carlo cancellieri wrote:
>
> Dear List,
>  we've planned to configure a cluster of geoserver in the cloud and we'd
> like to evaluate all the possible solutions.
> We already know something about JMSClustering and the classic shared data
> directory configuration.
>
> So, what about the  JDBCConfig module (community)?
> Is it up and running in any production environment?
> Known issues?
> How it solves concurrent modifications problem?
>
> Any help or details on that would be appreciated.
> Best regards,
> Carlo
>
>
> --
> Mr. Carlo Cancellieri
> *skype*: ccancellieri
> *Twitter*: @cancellieric
> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>
>
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to this 
> list:
> - Earning your support instead of buying it, but Ian Turton: 
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines: 
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this: 
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
> Geoserver-users@lists.sourceforge.nethttps://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:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>


-- 

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] JDBCConfig in the cluster

2020-04-29 Thread carlo cancellieri
Dear Jody,
 thank you for pointing this out to me!
It looks very interesting specially for the redis integration, we will try
to check it out but looks also very young so I'm afraid it could be not
very well tested.
Have you tryied that in a production environment?
Regards,
Carlo

Il giorno lun 27 apr 2020 alle ore 18:24 Jody Garnett <
jody.garn...@gmail.com> ha scritto:

> As I am sure you are aware no group has contributed a clustering solution
> to the core geoserver product yet (but I am glad such are being shared as
> community modules for RnD).
>
> Another one you may wish to check out is
> https://github.com/planetlabs/stratus
> --
> Jody Garnett
>
>
> On Mon, 27 Apr 2020 at 02:24, carlo cancellieri <
> geo.ccancelli...@gmail.com> wrote:
>
>> Dear List,
>>  we've planned to configure a cluster of geoserver in the cloud and we'd
>> like to evaluate all the possible solutions.
>> We already know something about JMSClustering and the classic shared data
>> directory configuration.
>>
>> So, what about the  JDBCConfig module (community)?
>> Is it up and running in any production environment?
>> Known issues?
>> How it solves concurrent modifications problem?
>>
>> Any help or details on that would be appreciated.
>> Best regards,
>> Carlo
>>
>>
>> --
>> Mr. Carlo Cancellieri
>> *skype*: ccancellieri
>> *Twitter*: @cancellieric
>> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>> ___
>> Geoserver-users mailing list
>>
>> Please make sure you read the following two resources before posting to
>> this list:
>> - Earning your support instead of buying it, but Ian Turton:
>> http://www.ianturton.com/talks/foss4g.html#/
>> - The GeoServer user list posting guidelines:
>> http://geoserver.org/comm/userlist-guidelines.html
>>
>> If you want to request a feature or an improvement, also see this:
>> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>>
>>
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


[Geoserver-users] JDBCConfig in the cluster

2020-04-27 Thread carlo cancellieri
Dear List,
 we've planned to configure a cluster of geoserver in the cloud and we'd
like to evaluate all the possible solutions.
We already know something about JMSClustering and the classic shared data
directory configuration.

So, what about the  JDBCConfig module (community)?
Is it up and running in any production environment?
Known issues?
How it solves concurrent modifications problem?

Any help or details on that would be appreciated.
Best regards,
Carlo


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


[Geoserver-users] WMS getFeatureInfo showing Unit Of Measure of the pixel value

2020-04-03 Thread carlo cancellieri
Dear list,
 I've a multidimensional mosaic of geotiffs with different unit of
measurement for each granule (but same SRS) and it works quite well.

Now when I ask for a granule using WMS with DIM_*** the getFeatureInfo
returns a feature with the value of the data in the following form:
GRAY_INDEX
{VALUE}

I'd like to show the unit of measurement of the granule pixel value into
the feature but geoserver may read the UOM somewhere so I'm wondering:
which is the best way to accomplish that result?

1. Keep the UOM into the metadata:
 I'm trying to see if there's a standard way to compose CSW or OpenSearch
informations with the feature coming from the WMS getFeatureInfo, no luck
for now but it's the preferred way since the data owner knows the data and
the uom.

We were doing that using jsonP on the client side call to custom services
but this is not so standard and I don't really like it.

2. Move UOM close to the data (into the geotiff):
 Not sure if the geotools readed is able to read the geotiff metadata
adding information to the returned feature
GRAY_INDEX, UOM
{VALUE}, {STRING}

That would be interesting but probably leverages too much on the specific
CoverageReader capabilities.
Maybe netcdf has better support but I'd like to find an agnostic solution
(not leveraging on a specific the data format reader).

3. Other options?

Any help would be appreciated.

Regards,
Carlo

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] Custom dimensions and GWC

2020-03-18 Thread carlo cancellieri
Dear list,
  solved, following this guide
https://www.geowebcache.org/docs/current/configuration/layers/parameterfilters.html

Adding the follow snippets now GWC is able to recognize my custom
dimensions:

 dim_crop
 ACOF
 
   
 
 ^|([A-Za-z]{1})$
   
   
 dim_technology
 A
 
   
 
 ^|([A-Za-z]{1})$
   


Thanks,
Carlo


Il giorno mar 17 mar 2020 alle ore 20:07 carlo cancellieri <
geo.ccancelli...@gmail.com> ha scritto:

> Dear All,
>  I'm configuring on a Geoserver 2.16.x an ImageMosaic with 2 custom
> dimensions (DIM_XXX, DIM_YYY) using geotiffs.
>
> Everything is working quite well but when a tile is requested geoserver is
> returning always the same tile, even if I change the DIM_XXX parameter
> value in the getMap request,
>
> I'm not able to see how to properly configure GWC on that layer, it looks
> like the custom dimensions cannot be used to match a tile request.
>
> In short: Is it possible to use custom dimensions (NOT time and elevation)
> with GWC? How?
>
> Thank you all,
> Carlo
>
> --
> Mr. Carlo Cancellieri
> *skype*: ccancellieri
> *Twitter*: @cancellieric
> *LinkedIn*: http://it.linkedin.com/in/ccancellieri/
>


-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


[Geoserver-users] Custom dimensions and GWC

2020-03-17 Thread carlo cancellieri
Dear All,
 I'm configuring on a Geoserver 2.16.x an ImageMosaic with 2 custom
dimensions (DIM_XXX, DIM_YYY) using geotiffs.

Everything is working quite well but when a tile is requested geoserver is
returning always the same tile, even if I change the DIM_XXX parameter
value in the getMap request,

I'm not able to see how to properly configure GWC on that layer, it looks
like the custom dimensions cannot be used to match a tile request.

In short: Is it possible to use custom dimensions (NOT time and elevation)
with GWC? How?

Thank you all,
Carlo

-- 
Mr. Carlo Cancellieri
*skype*: ccancellieri
*Twitter*: @cancellieric
*LinkedIn*: http://it.linkedin.com/in/ccancellieri/
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] wps request builder

2014-03-28 Thread carlo cancellieri
Hy Manjula,
 have you configured the JVM as recommended?
http://docs.geoserver.org/stable/en/user/production/container.html#optimize-your-jvm
Check the -Xmx parameters.
Cheers,
Carlo


2014-03-27 10:35 GMT+01:00 Manjula :

> while generating WPS request builder gs:contour dynamically with SLD in
> geoserver 2.5 RC1 i am getting this error
> please suggest any alternatives...
>
>
>  serviceInstance="http://localhost:8080/geoserver/ows?";
> version="1.0.0">
> wps:processVersion="1.0.0">gs:ContourContourComputes
> contour lines at specified intervals or levels for the values in a
> raster.
> creationTime="2014-03-27T09:36:14.063Z"> version="1.1.0"> exceptionCode="NoApplicableCode">Process failed during
> execution
> java.lang.OutOfMemoryError: Java heap space
> Java heap
>
> space
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/wps-request-builder-tp5131461.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Meet us at GEO Business 2014! in London! Visit http://goo.gl/fES3aK for
more information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

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


Re: [Geoserver-users] specify a filter for each layer in a GetFeatureInfo request

2014-03-28 Thread carlo cancellieri
Aleksander,
 looking at the request and the error seems that you have not escaped the
request:
<< When used in a GET request, the XML tag brackets must be URL-encoded.>>
You could try this:
http://meyerweb.com/eric/tools/dencoder/
to escape the url

Cheers,
Carlo


2014-03-28 15:45 GMT+01:00 Aleksander Vines :

> Thanks for the replies,
>
> Carlo: comma did not work either :(
>
> http://localhost:8090/geoserver/greensad/wms?LAYERS=layer1,layer2&QUERY_LAYERS=layer1,layer2&STYLES=,&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetFeatureInfo&BBOX=-138.689604,-68.094802,163.689604,83.094802&FEATURE_COUNT=2000&HEIGHT=400&WIDTH=800&FORMAT=image/png&INFO_FORMAT=text/html&SRS=EPSG:4326&X=368&Y=46&FILTER=( xmlns:ogc="http://www.opengis.net/ogc";> ... ),( xmlns:ogc="http://www.opengis.net/ogc";> ... ) --> 
> "org.xml.sax.SAXParseException;
> lineNumber: 1; columnNumber: 1174; Content is not allowed in trailing
> section. Content is not allowed in trailing section."
>
> Chris: I was unclear when I mentioned CQL_FILTER, I'm using an
> OGC-XML-filter (as you see from above). I was just saying that what the
> documentation said about CQL_FILTERS did not work for the FILTER variable
> (using semicolon to separate the filters).
>
> Still can't seem to figure out this, and I've started to take a look at
> the source code myself to try to locate it, but I'm not very familiar with
> the Geoserver code :)
>
> Many thanks,
> Aleksander Vines
>
> Chris Snider  , 3/28/2014 3:26 PM:
>
>  I use the CQL_FILTER= with multiple layers.
>
>
>
> For Example,
> layers=BASE:Countries,BASE:States_Provinces&styles=&CQL_FILTER=INCLUDE;Name='SomeProvinceName'
>
>
>
> If you don't want to restrict a layer result set, use the INCLUDE filter.
> Or the EXCLUDE if you want to remove it completely.
>
>
>
> The filters themselves can be built up to more complexity
>
>
>
> CQL_FILTER=(MyAttribute='Value1' and MyOtherValue='Value2') or
> MyThirdAttribute='Value3'
>
>
>
> Chris Snider
>
> Senior Software Engineer
>
> *Intelligent Software Solutions, Inc.*
>
> [image: Description: Description: Description:
> cid:image001.png@01CA1F1F.CBC93990]
>
>
>
> *From:* carlo cancellieri [mailto:carlo.cancelli...@geo-solutions.it]
> *Sent:* Friday, March 28, 2014 6:31 AM
> *To:* Aleksander Vines
> *Cc:* geoserver-users@lists.sourceforge.net
> *Subject:* Re: [Geoserver-users] specify a filter for each layer in a
> GetFeatureInfo request
>
>
>
> Aleksander,
>
> I've never used them anyhow have you tried with commas?
>
>  filter=(FILTER),(FILTER),...
>
>
>
> Let me know, we can take a look at the code if needed.
>
> Cheers,
>
> Carlo
>
>
>
>
>
> 2014-03-28 12:34 GMT+01:00 Aleksander Vines :
>
> Hi list,
>
>
>
> according to the documentation at
> http://docs.geoserver.org/stable/en/user/services/wms/vendor.html#filter: "If 
> more than one layer is specified in the layers parameter then a
> separate filter can be specified for each layer."
>
>
>
> But it does not say how I can do this, on cql_filter, each filter can be
> seperated by ';' but it does not work like that for the filter. It further
> says that the filter can contain a list of several filters, enclosed in
> parentheses, but it seemingly has nothing to do with one filter for each
> layer.
>
>
>
> I've been trying several forms (yes the final requests are url-encoded):
>
> filter=(filterForFirstLayer;filterForSecondLayer)
>
> filter=(filterForFirstLayer);(filterForSecondLayer)
>
> filter=filterForFirstLayer;filterForSecondLayer
>
>
>
> I'm sure the solution is easy but I can't seem to find it.
>
>
>
> Thanks,
>
> Aleksander Vines
>
>
>
> --
>
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
>
>
>
> --
>
> ==
>
> Meet us at GEO Business 2014! in London! Visit http://goo.gl/fES3aK for
> more information.
>
> ==
>
>
>
> Dott. Carlo Cancellieri
> @cancellieric
> Software Engineer
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313
> fax:   +39 0584 1660272
>
> http://www.geo-solutions.it
> http://twitter

Re: [Geoserver-users] specify a filter for each layer in a GetFeatureInfo request

2014-03-28 Thread carlo cancellieri
Aleksander,
I've never used them anyhow have you tried with commas?
 filter=(FILTER),(FILTER),...

Let me know, we can take a look at the code if needed.
Cheers,
Carlo



2014-03-28 12:34 GMT+01:00 Aleksander Vines :

> Hi list,
>
> according to the documentation at
> http://docs.geoserver.org/stable/en/user/services/wms/vendor.html#filter: "If 
> more than one layer is specified in the layers parameter then a
> separate filter can be specified for each layer."
>
> But it does not say how I can do this, on cql_filter, each filter can be
> seperated by ';' but it does not work like that for the filter. It further
> says that the filter can contain a list of several filters, enclosed in
> parentheses, but it seemingly has nothing to do with one filter for each
> layer.
>
> I've been trying several forms (yes the final requests are url-encoded):
> filter=(filterForFirstLayer;filterForSecondLayer)
> filter=(filterForFirstLayer);(filterForSecondLayer)
> filter=filterForFirstLayer;filterForSecondLayer
>
> I'm sure the solution is easy but I can't seem to find it.
>
> Thanks,
> Aleksander Vines
>
>
> --
>
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Meet us at GEO Business 2014! in London! Visit http://goo.gl/fES3aK for
more information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

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


Re: [Geoserver-users] Geoserver as a portlet

2014-03-28 Thread carlo cancellieri
Ciao Sam,
 have you considered to implement only the openlayer client as a portlet?
Your intention is to implement a portlet frontend to the administration GUI
of geoserver?
Cheers,
Carlo


2014-03-28 13:08 GMT+01:00 mlg27 :

> hi,
> I'm a informatic engineering student from Portugal, and I'm developing a
> final project that's include geoserver.
> For now i want to deploy geoserver into gatein (like a portlet) and start
> the web interface from there. It's possible?
> I have already the maven project and the java source of geoserver in
> eclipse.
>
> If anyone can help me i appreciate it.
> I'm sorry for my English.
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/Geoserver-as-a-portlet-tp5131789.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Meet us at GEO Business 2014! in London! Visit http://goo.gl/fES3aK for
more information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

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


Re: [Geoserver-users] Geoserver layers get removed after stopping/starting Geoserver

2014-03-19 Thread carlo cancellieri
Srader,
Check the data-coverage store, is it present and enabled ?

Cheers,
Carlo
Il 19/mar/2014 17:04 "srader"  ha scritto:

> After I add a store and layer to geoserver and previewing the map, I stop
> and
> restart the server. The layer gets removed. What steps could I be missing?
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/Geoserver-layers-get-removed-after-stopping-starting-Geoserver-tp5129901.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and their
> applications. Written by three acclaimed leaders in the field,
> this first edition is now available. Download your free book today!
> http://p.sf.net/sfu/13534_NeoTech
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Getting an error when trying to save imagemosaic store

2014-03-13 Thread carlo cancellieri
Earl,
I'm with my tablet so I can't verify your jndi configuration anyhow
consider that my suggestions are just in addiction to the Simone's ones.
If you need an image mosaic with jndi support you still have to use the
image mosaic coverage store pointing to the target folder containing the
images and datastore.properties  as previously suggested.
Ciao,
Carlo
Il 13/mar/2014 23:21  ha scritto:

> Cario,
>
>Thanks, no luck yet, but at least I have Tomcat installed and running.
>
> I'm running postgresql for my db.  So I downloaded
> postgresql-9.3-1101.jdbc41.jar and copied it to the C:\Program Files\Apache
> Software Foundation\Tomcat 7.0\lib
>
> I added to content.xml in C:\Program Files\Apache Software
> Foundation\Tomcat 7.0\conf
>
>   Context allowLinking="true">
> type="javax.sql.DataSource"
>  url="jdbc:postgresql://127.0.0.1:5432/WxCasterData"
>  driverClassName="org.postgresql.driver"
>  maxActive="20" maxIdle="3" maxWait="1"
>  poolPreparedStatements="true"
>  maxOpenPreparedStatements="100" />
> 
>
>(I removed username and password of course).
>
> In C:\Program Files (x86)\GeoServer 2.4.4\webapps\geoserver\WEB-INF
>
> I added to the end of web.xml:
>
> 
> index.html
> 
>  Postgres GeoServer
> Datasource jdbc/postgres
> javax.sql.DataSource Container
>  
>
>Both services restarted.
>
>In GeoServer 2.4.4 Admin gui, I selected in Data->Store, the Add New
> Store widget...
>
> I then selected PostGIS (JNDI).
>
> Here is where I may be having problems with...
>
>I added for Data source name I typed WxCasterDataRaster (I already have
> a GeoServer Postgres store for WxCasterData (for my vector products)..
>
>In the jndiRefeerenceName I had : java:comp/env/jdbc/postgres
>
>schema: public
>
>nothing for anything else..  I could be wrong on the entire GeoServer
> for this store.
>
> thanks,
> Earl
>
>  carlo cancellieri  wrote:
> > Earl,
> > Tomcat is a java based application so it is usable under jvm.
> > Take a look here:
> >
> > http://tomcat.apache.org/tomcat-7.0-doc/windows-service-howto.html
> >
> > Regards,
> > Carlo
> > Il 13/mar/2014 20:04  ha scritto:
> >
> > > Cario
> > >
> > >thanks.  But the only OS that I've seen TomCat on are Linux and SUN.
> > >  I'm on a Windows box, so any instructions on setting up the connection
> > > pool from a Windows machine would be awesome.
> > >
> > >Earl
> > >  carlo cancellieri  wrote:
> > > > Earl,
> > > >
> > > > Error creating data store, check the parameters. Error message:
> Cannot
> > > find
> > > > > JNDI data source: java:comp/env/jdbc/WxCasterData
> > > > >
> > > >
> > > > This is probably why you still have to configure the connection pool
> as
> > > > resource into your application server.
> > > > Here is a quick howto to get this working in tomcat:
> > > >
> > > >
> > >
> http://docs.geoserver.org/stable/en/user/tutorials/tomcat-jndi/tomcat-jndi.html
> > > >
> > > > Let we know if this is the case.
> > > > Cheers,
> > > > Carlo
> > > >
> > > >
> > > >
> > > >
> > > > >
> > > > > Note: I am a Meteorologist who writes applications to process and
> > > display
> > > > > various  weather products (radar and satellite imagery, model
> graphics,
> > > > > forecaster created graphics, etc).  I know enough about web
> hosting on
> > > my
> > > > > Windows PC to get IIS installed and running, installing php, etc.,
>  I
> > > know
> > > > > enough to get GeoServer running (I love viewing my vector graphics
> > > products
> > > > > in GeoServer that were stored in Postgres (watches, warnings,
> mesoscale
> > > > > discussions, convective outlooks, etc), which I appreciate your
> hard
> > > work
> > > > > (because it was easy for me to stand up (first products up within 1
> > > hour of
> > > > > GeoServer install).  I however have 0% knowledge on how to set up
> the
> > > JNDI
> > > > > at all.
> > > > >
> > > > >If someone can direct

Re: [Geoserver-users] Getting an error when trying to save imagemosaic store

2014-03-13 Thread carlo cancellieri
Earl,
Tomcat is a java based application so it is usable under jvm.
Take a look here:

http://tomcat.apache.org/tomcat-7.0-doc/windows-service-howto.html

Regards,
Carlo
Il 13/mar/2014 20:04  ha scritto:

> Cario
>
>thanks.  But the only OS that I've seen TomCat on are Linux and SUN.
>  I'm on a Windows box, so any instructions on setting up the connection
> pool from a Windows machine would be awesome.
>
>    Earl
>  carlo cancellieri  wrote:
> > Earl,
> >
> > Error creating data store, check the parameters. Error message: Cannot
> find
> > > JNDI data source: java:comp/env/jdbc/WxCasterData
> > >
> >
> > This is probably why you still have to configure the connection pool as
> > resource into your application server.
> > Here is a quick howto to get this working in tomcat:
> >
> >
> http://docs.geoserver.org/stable/en/user/tutorials/tomcat-jndi/tomcat-jndi.html
> >
> > Let we know if this is the case.
> > Cheers,
> > Carlo
> >
> >
> >
> >
> > >
> > > Note: I am a Meteorologist who writes applications to process and
> display
> > > various  weather products (radar and satellite imagery, model graphics,
> > > forecaster created graphics, etc).  I know enough about web hosting on
> my
> > > Windows PC to get IIS installed and running, installing php, etc.,  I
> know
> > > enough to get GeoServer running (I love viewing my vector graphics
> products
> > > in GeoServer that were stored in Postgres (watches, warnings, mesoscale
> > > discussions, convective outlooks, etc), which I appreciate your hard
> work
> > > (because it was easy for me to stand up (first products up within 1
> hour of
> > > GeoServer install).  I however have 0% knowledge on how to set up the
> JNDI
> > > at all.
> > >
> > >If someone can direct me to how to do it in Windows, I'd really
> > > appreciate it.  I can live with WorldImage, but I'd love to provide my
> > > users with more than just the most recent image (for looping , etc).
> > >
> > > Earl
> > >
> > >
> > >  Simone Giannecchini  wrote:
> > > > Ciao Earl,
> > > > please, find my answer inline below...
> > > >
> > > >
> > > > Regards,
> > > > Simone Giannecchini
> > > > ==
> > > > Our support, Your Success! Visit http://opensdi.geo-solutions.it for
> > > > more information.
> > > > ==
> > > >
> > > > Ing. Simone Giannecchini
> > > > @simogeo
> > > > Founder/Director
> > > >
> > > > GeoSolutions S.A.S.
> > > > Via Poggio alle Viti 1187
> > > > 55054  Massarosa (LU)
> > > > Italy
> > > > phone: +39 0584 962313
> > > > fax: +39 0584 1660272
> > > > mob:   +39 333 8128928
> > > >
> > > > http://www.geo-solutions.it
> > > > http://twitter.com/geosolutions_it
> > > >
> > > > ---
> > > >
> > > >
> > > > On Sat, Mar 1, 2014 at 8:17 PM,   wrote:
> > > > > Trying to create the Image Mosaic store from scratch.  Getting this
> > > error trying to connect to the
> > > > >
> > > > > Caused by: java.lang.IllegalArgumentException: java.io.IOException:
> > > Cannot find JNDI data source: java:comp/env/jdbc/postgres
> > > > > at
> > >
> org.geotools.gce.imagemosaic.catalog.GTDataStoreGranuleCatalog.(GTDataStoreGranuleCatalog.java:194)
> > > > > at
> > >
> org.geotools.gce.imagemosaic.catalog.GranuleCatalogFactory.createGranuleCatalog(GranuleCatalogFactory.java:68)
> > > > > at
> > >
> org.geotools.gce.imagemosaic.CatalogManager.createGranuleCatalogFromDatastore(CatalogManager.java:163)
> > > >
> > > >
> > > > It looks like you are trying to access a JNDI connection pool which
> is
> > > > not available. Try to create a datastore directly in the UI for
> > > > GeoServer for that JNDI name to make sure is correct
> > > > and double check the config in Tomcat (or whateevr the application
> > > > server you are using is).
> > > >
> > > > That said, I would not explicitly force preparedStatements to true.
> > > >
> > > > Let us know how it goes.
> > > >
> > > > >
> > >

Re: [Geoserver-users] Getting an error when trying to save imagemosaic store

2014-03-13 Thread carlo cancellieri
 the content of
> > >> > > RADAR_NATIONAL_BREF.properties?
> > >> > > > > > Does that file it have been automatically created on
> configuration
> > >> > > or did
> > >> > > > > > you set it by yourself?
> > >> > > > > >
> > >> > > > > > Please, let us know.
> > >> > > > > > Best Regards,
> > >> > > > > > Daniele
> > >> > > > > >
> > >> > > > > > ==
> > >> > > > > > Our support, Your Success! Visit
> http://opensdi.geo-solutions.it for
> > >> > > > > more
> > >> > > > > > information.
> > >> > > > > > ==
> > >> > > > > > Ing. Daniele Romagnoli
> > >> > > > > > Senior Software Engineer
> > >> > > > > >
> > >> > > > > > GeoSolutions S.A.S.
> > >> > > > > > Via Poggio alle Viti 1187
> > >> > > > > > 55054  Massarosa (LU)
> > >> > > > > > Italy
> > >> > > > > > phone: +39 0584 962313
> > >> > > > > > fax:  +39 0584 1660272
> > >> > > > > >
> > >> > > > > > http://www.geo-solutions.it
> > >> > > > > > http://twitter.com/geosolutions_it
> > >> > > > > >
> > >> > > > > > ---
> > >> > > > > >
> > >> > > > > >
> > >> > > > > > On Sun, Feb 23, 2014 at 1:45 AM, 
> wrote:
> > >> > > > > >
> > >> > > > > > > I'm trying to create a imagemosaic store of radar mosaics
> using
> > >> > > > > postgres
> > >> > > > > > > for feature info.  I'm getting the below error when
> trying to save
> > >> > > the
> > >> > > > > > > store.  I have a datastore.properties,
> > >> > > RADAR_NATIONAL_BREF.properties
> > >> > > > > files
> > >> > > > > > > in the data directory.  I created a layer from the failed
> store
> > >> > > > > (allowed me
> > >> > > > > > > to save but still had the error), the feature info
> (validtime,
> > >> > > location
> > >> > > > > > > (filename), region, type are all fine.  Just no image.  I
> saw a
> > >> > > post in
> > >> > > > > > > Sept 25 2013 similar but no resolution other than update
> for Linux
> > >> > > > > (I'm on
> > >> > > > > > > windows).  I am running GeoServer 2.4.4.  any help would
> be greatly
> > >> > > > > > > appreciated.  thanks. Below is the error message.
> > >> > > > > > >
> > >> > > > > > > Failed to create reader from
> > >> > > > > > > file://e:\earl-web\radar\geoserver\RADAR_NATIONAL_BREF
> and hints
> > >> > > Hints:
> > >> > > > > > > FILTER_FACTORY = FilterFactoryImpl STYLE_FACTORY =
> StyleFactoryImpl
> > >> > > > > > > FEATURE_FACTORY =
> > >> > > > >
> > >> > >
> org.geotools.feature.LenientFeatureFactoryImpl@1155013FORCE_AXIS_ORDER_HONORING
> =
> > >> > > http FORCE_LONGITUDE_FIRST_AXIS_ORDER = true
> > >> > > > > > > EXECUTOR_SERVICE =
> java.util.concurrent.ThreadPoolExecutor@1bb310f
> > >> > > > > [Running,
> > >> > > > > > > pool size = 0, active threads = 0, queued tasks = 0,
> completed
> > >> > > tasks =
> > >> > > > > 0]
> > >> > > > > > > LENIENT_DATUM_SHIFT = true COMPARISON_TOLERANCE = 1.0E-9
> > >> > > > > > >
> > >> > > > > > >
> > >> > > > > > >
> > >> > > > > > >
> > >> > > > >
> > >> > >
> --
> > >> > > > > > > Managing the Performance of Cloud-Based Applications
> > >> > > > > > > Take advantage of what the Cloud has to offer - Avoid
> Common
> > >> > > Pitfalls.
> > >> > > > > > > Read the Whitepaper.
> > >> > > > > > >
> > >> > > > > > >
> > >> > > > >
> > >> > >
> http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk
> > >> > > > > > > ___
> > >> > > > > > > Geoserver-users mailing list
> > >> > > > > > > Geoserver-users@lists.sourceforge.net
> > >> > > > > > >
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
> > >> > > > > > >
> > >> > > > >
> > >> > > > >
> > >> > >
> > >> > >
> > >>
> > >>
> > >>
> --
> > >> Flow-based real-time traffic analytics software. Cisco certified tool.
> > >> Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
> > >> Customize your own dashboards, set traffic alerts and generate
> reports.
> > >> Network behavioral analysis & security monitoring. All-in-one tool.
> > >>
> http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
> > >> ___
> > >> Geoserver-users mailing list
> > >> Geoserver-users@lists.sourceforge.net
> > >> https://lists.sourceforge.net/lists/listinfo/geoserver-users
> > >
> > >
> > >
> --
> > > Flow-based real-time traffic analytics software. Cisco certified tool.
> > > Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
> > > Customize your own dashboards, set traffic alerts and generate reports.
> > > Network behavioral analysis & security monitoring. All-in-one tool.
> > >
> http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
> > > ___
> > > Geoserver-users mailing list
> > > Geoserver-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
>
> --
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and their
> applications. Written by three acclaimed leaders in the field,
> this first edition is now available. Download your free book today!
> http://p.sf.net/sfu/13534_NeoTech
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Meet us at GEO Business 2014! in London! Visit http://goo.gl/fES3aK for
more information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Create Image Mosaic JDBC datastore in command line

2014-03-11 Thread carlo cancellieri
Hi,
 take a look here:

http://docs.geoserver.org/2.0.0/user/extensions/rest/rest-config-examples-curl.html
Cheers,
Carlo


2014-03-11 17:55 GMT+01:00 Jean-Baptiste Paroissien <
jeanbaptiste.paroiss...@gmail.com>:

> Hi lister,
>
> I would like to publish raster from PostGIS database, and I found this
> tutorial
>
> http://docs.geoserver.org/2.1.4/user/tutorials/imagemosaic-jdbc/imagemosaic-jdbc_tutorial.html
> , everything works fine, but I need to configure GeoServer in command
> line (curl for example). Is there an opportunity to do this?
>
> Thanks in advance,
> Jb
>
>
>
> --
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and their
> applications. Written by three acclaimed leaders in the field,
> this first edition is now available. Download your free book today!
> http://p.sf.net/sfu/13534_NeoTech
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Meet us at GEO Business 2014! in London! Visit http://goo.gl/fES3aK for
more information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] upload image mosaic

2014-03-10 Thread carlo cancellieri
Marco,

> I'm trying to upload a tif file as a Mosaic image.
>

As far as I know the mosaic can be sent via the rest interface as zip file.
If you are using the GUI you have to select a folder which should be
reachable by the geoserver (no file will be uploaded to the geoserver
datadir).


> When I try to upload the file the following error get listed:
>
> "Could not list layers for this store, an error occurred retrieving them:
> Argument "value" should not be null".
>
> Further the command Browse doesn't appear so I have to type the directory.
>

I suggest to start passing the directory which contains the geotiff (it it
is local to geoserver) and check the result.
If you are still getting the above error, please try adding some more info
to the mail, such as:
1. logs
2. gdalinfo on the image
3. other details on steps to reproduce

Cheers,
Carlo


>
> any suggestion?
>
> regards,
>
> Marco
>
>
> --
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and their
> applications. Written by three acclaimed leaders in the field,
> this first edition is now available. Download your free book today!
> http://p.sf.net/sfu/13534_NeoTech
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] newbie - Data store / Layer question

2014-02-25 Thread carlo cancellieri
Stefan,


> How do I configure GeoServer to read in a load of tiff files in a folder
>

If tiffs are (geotiff) correctly geo-referenced and homogeneous (look at
the [1]) and can be logically represented in a single layer (map) you could
try to create a mosaic over that folder.
For limitation and info take a look here:
[1]
http://docs.geoserver.org/stable/en/user/tutorials/image_mosaic_plugin/imagemosaic.html

If those tiffs are geotiff but cannot be represented into the same layer
(map) you have to publish them as separate geotiff files.

Note that tiffs are NOT geotiffs, if you are missing geospatial metadata in
images you probably have to apply some pre-processing before trying to
publish them into geoserver.

Cheers,
Carlo



>
>
>
> --
> Flow-based real-time traffic analytics software. Cisco certified tool.
> Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
> Customize your own dashboards, set traffic alerts and generate reports.
> Network behavioral analysis & security monitoring. All-in-one tool.
>
> http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Newbie question: GeoServer web page not starting up

2014-02-25 Thread carlo cancellieri
Ciao,
What about the logs?
What u get pointing the browser on those urls?
Carlo
Il 25/feb/2014 21:17 "EVANS, JAMES R GS-13 USAF ACC 84 RADES/SCZE" <
james.evan...@us.af.mil> ha scritto:

> Hi,
> I installed the windows installer, version 2.4.4, as a service, and not as
> a
> service, put it on port 8081, and can't get the web service to answer up to
> http://localhost:8081, or http://localhost:8081/geoserver/web.  I have
> java
> JRE 6 installed, and it works with other things.  When installed as a
> service, I can see the service is running.   Anyway, I'm running 64-bit
> Windows 7, on a domain machine, and I'm in an admin group on the domain.
> Any clue as to how to get this going?
> Thanks,
> James
>
>
>
>
>
> --
> Flow-based real-time traffic analytics software. Cisco certified tool.
> Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
> Customize your own dashboards, set traffic alerts and generate reports.
> Network behavioral analysis & security monitoring. All-in-one tool.
>
> http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Hiding columns in layers

2014-02-19 Thread carlo cancellieri
Jonathan,
 you could create an SQL view directly into geoserver:
http://docs.geoserver.org/stable/en/user/data/database/sqlview.html
Cheers,
Carlo


2014-02-19 12:42 GMT+01:00 Jonathan Moules <
jonathanmou...@warwickshire.gov.uk>:

> Hi List,
>   I want to publish a layer but don't want all of the columns in the
> database to be visible in the WMS/WFS etc. Is there an easy way to "hide"
> columns with GeoServer?
>
> (I know I can re-load the data or create a View in the database, but those
> are both high maintenance).
>
> Cheers,
> Jonathan
>
> This transmission is intended for the named addressee(s) only and may
> contain sensitive or protectively marked material up to RESTRICTED and
> should be handled accordingly. Unless you are the named addressee (or
> authorised to receive it for the addressee) you may not copy or use it, or
> disclose it to anyone else. If you have received this transmission in error
> please notify the sender immediately. All email traffic sent to or from us,
> including without limitation all GCSX traffic, may be subject to recording
> and/or monitoring in accordance with relevant legislation.
>
> --
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
>
> http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] REST PUT to upload files from client machine

2014-02-14 Thread carlo cancellieri
Don't think you can upload a kml as far as i know it is supported as output
format only.
Try with a shp file instead.
Cheers,
Carlo
Il 14/feb/2014 18:38 "tt5430"  ha scritto:

> Hi Mauro,
>
> Thanks for you help.  I tried to upload a kml file from a local machine to
> geoserver installed on other machine and got errors that I don't know why.
> Below was what I did:
>
> 1. I created a workspace named "kmls" using:
>
> curl -v -u admin:geoserver -XPOST -H "Content-type: text/xml"  -d 
> "kmls"  
> http://172.16.203.30:8080/geoserver/rest/workspaces
>
> 2. cd to a directory where that kml file is located.
>
> 3. executed the following curl command:
> $ curl -v -u admin:geoserver -XPUT -H "Content-type: text/xml" -d 
> @BalloonLinks.kml 
> http://172.16.203.30:8080/geoserver/rest/workspaces/kmls/datastores/kmls/file.xml
>
> * timeout on name lookup is not supported
> * About to connect() to 172.16.203.30 port 8080 (#0)
> *   Trying 172.16.203.30...
> * connected
> * Connected to 172.16.203.30 (172.16.203.30) port 8080 (#0)
> * Server auth using Basic with user 'admin'
>
> > PUT /geoserver/rest/workspaces/kmls/datastores/kmls/file.xml HTTP/1.1
> > Authorization: Basic YWRtaW46Z2Vvc2VydmVy
> > User-Agent: curl/7.26.0
> > Host: 172.16.203.30:8080
>
> > Accept: */*
> > Content-type: text/xml
> > Content-Length: 7583
> > Expect: 100-continue
> >
> < HTTP/1.1 100 Continue
> < HTTP/1.1 400 Bad Request
> < Server: Apache-Coyote/1.1
> < Content-Type: text/plain
>
> < Transfer-Encoding: chunked
> < Date: Wed, 12 Feb 2014 16:16:07 GMT
> < Connection: close
> <
> Unsupported format: xml* we are done reading and this is set to close, stop 
> send
> * Closing connection #0
>
> What did I do wrong?
>
> Regards,
>
> -Tam
>
>
>
>
>
> On Wed, Feb 12, 2014 at 4:12 AM, Mauro Bartolomeoli-3 [via OSGeo.org] <[hidden
> email] > wrote:
>
>> Hi Tam,
>>
>>
>> 2014-02-12 6:04 GMT+01:00 tt5430 <[hidden 
>> email]
>> >:
>>
>> All,
>>>
>>> I am trying to find a way for the users to upload files such as GeoTiff,
>>> kml, etc. from client machine onto GeoServer workspace and wondering
>>> whether
>>> I can use GeoServer REST PUT operation for that.
>>>
>>> Below is an example of the REST PUT operation using curl taken from
>>> GeoServer's REST examples.
>>>
>>> curl -v -u admin:geoserver -XPUT -H "Content-type: application/zip"
>>>   --data-binary @roads.zip
>>>
>>>
>>> http://localhost:8080/geoserver/rest/workspaces/acme/datastores/roads/file.shp
>>>
>>>  I known that "@roads.zip" indicates the zip file to be uploaded.  But
>>> where
>>> is the file?  Is it it relative to some path?
>>>
>>
>> It is relative to the path you are launching curl from. You can also
>> specify an absolute path.
>>
>>
>>> and what is the last line?  Is it always "
>>> http://localhost:8080/geoserver";?
>>>
>>
>> It is the url of the geoserver you need to configure with the new
>> shapefile. That one is the default url when you install the standalone
>> geoserver locally on your PC.
>> Do you have a geoserver installed on some server?
>>
>>
>>> I could not find any examples from the internet showing how to use REST
>>> PUT
>>> to upload files from client machine.  Can some clarify this?  If it can
>>> be
>>> done with GeoServer REST API, I greatly appreciated an example in curl.
>>>
>>
>> On the same page you found the shapefile example (
>> http://docs.geoserver.org/latest/en/user/rest/examples/curl.html), you
>> can find other examples  for other types of data.
>> In this other documentation page (
>> http://docs.geoserver.org/latest/en/user/rest/) you can find a reference
>> for all the supported rest requests. For example to upload a geotiff you
>> will need a coveragestore PUT request.
>>
>>
>> Cheers,
>> Mauro
>>
>>
>>
>> --
>> ==
>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>> more information.
>> ==
>>
>> Dott. Mauro Bartolomeoli
>> @mauro_bart
>> Senior Software Engineer
>>
>> GeoSolutions S.A.S.
>> Via Poggio alle Viti 1187
>> 55054  Massarosa (LU)
>> Italy
>> phone: > target="_blank">+39 0584 962313
>> fax: > target="_blank">+39 0584 1660272
>>
>> http://www.geo-solutions.it
>> http://twitter.com/geosolutions_it
>>
>> ---
>>
>> --
>>
>> Android apps run on BlackBerry 10
>> Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
>> Now with support for Jelly Bean, Bluetooth, Mapview and more.
>> Get your Android app in front of a whole new audience.  Start now.
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk
>> ___
>> Geoserver-users mailing list
>> [hidden email] 
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>>
>> --

Re: [Geoserver-users] Geoserver as remote server

2014-02-09 Thread carlo cancellieri
Marco,
Start looking here:

http://docs.geoserver.org/stable/en/user/production/index.html

If you have some more specific question feel free to ask again.

Ciao,
Carlo

Il 09/feb/2014 09:45 "marco casella"  ha scritto:
>
> Dear geoserver,
>
> do you have any tips regarding how to set up Geoserver as a remote server?
> Geoserver runs greatly as local server in my machine, but I really need
to share my work in the form of WMS, WFS, WCS with other clients.
> What kind of server do I need, and how can I install Geoserver in this
machine?
> Any advice is appreciated,
>
> best regards
>
> Marco
>
>
--
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
>
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Manage geoserver welcome page

2014-02-06 Thread carlo cancellieri
I don't think that you can remove the link from the Web page but you can
limit access o hide all layers configuring accordingly the security access
rules.
Ceers,
Carlo
Il 06/feb/2014 20:10 "Umair Majoka"  ha scritto:

> how to hide layer preview link from geoserver login page??
>
>
> --
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
>
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Controlflow

2014-02-05 Thread carlo cancellieri
Ciao Vikram,


> 1. I added *controlflow.jar* in C:\Program Files\Apache Software
> Foundation\Tomcat 7.0_Tomcat7_8080\webapps\geoserver\WEB-INF\lib
>
> 2. After that I added controlflow.properties with certain configuration.
> But no effect in geoserver.
>

No visible effect should be noted, to check if it is working try looking at
the logs.
You may also limit the total amount of requests to 1 and firing multiple
requests in parallel (with OpenLayers and tiled=true) to check if some
request will be rejected.
Most of the parameters and limits to configure into the control.flow are
VERY dependent by the served data and by the number and type of requests to
serve.
So in most cases you have to tune it using the experience and data coming
out after a period (as long as possible) of test profiling requests coming
out from users (use monitoring plugin for this).


> 3. What are all the parameters to be checked in Apache Jmeter. ?
>

There are meny posts to know how to configure jmeter with geoserver (try to
search over the ML).


PS: keep the MailingList into the loop to also get support from other guys.

Cheers,
Carlo




>
> *Regards,*
>
>  *S. Thiruvikraman M.Sc.,*
>
> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957> *
>
> *  <http://www.linkedin.com/in/vikramangis>
> <https://www.facebook.com/vikramgeek> *
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver Configuration

2014-02-05 Thread carlo cancellieri
Vikram,
 could you kindly open a new post for this new argument on the ML?
please also add some more info about your needs configuring the control
flow is too generic as question:
(http://docs.geoserver.org/stable/en/user/extensions/controlflow/index.html)
Cheers,
Carlo


2014-02-05 Vikram Santhanam :

> Dear Carlo,
>  How to create controlflow.properties file and make it working in
> geoserver >?
>
>
> *Regards,*
>
>  *S. Thiruvikraman M.Sc.,*
>
> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957> *
>
> *  <http://www.linkedin.com/in/vikramangis>
> <https://www.facebook.com/vikramgeek> *
>
>
>
> On Mon, Feb 3, 2014 at 2:28 PM, carlo cancellieri <
> carlo.cancelli...@geo-solutions.it> wrote:
>
>> Ciao Vikram,
>>
>>  I think you are still missing the following 2 steps:
>>
>> 1. Configure a proxy to route requests to the configured tomcat instances:
>> http://tomcat.apache.org/tomcat-6.0-doc/proxy-howto.html
>>
>> 2. Configure the proxy url on geoserver:
>>
>> http://docs.geoserver.org/stable/en/user/webadmin/server/globalsettings.html
>>
>> PS: please keep the ML into the loop.
>>
>> Cheers,
>> Carlo
>>
>>
>> 2014-02-03 Vikram Santhanam :
>>
>> yeah i have changed in server.xml
>>> reference :
>>> http://www.ansoncheunghk.info/article/5-steps-install-multiple-apache-tomcat-instance-windows
>>> I st tomcat is default and the following config are the 2nd and 3rd
>>> instance.,
>>>
>>> Server shutdonw port : 8006
>>> HTTP : 8081
>>> AJP : 8010
>>>
>>>
>>>  Server shutdonw port : 8007
>>> HTTP : 8082
>>> AJP : 8011
>>>
>>>
>>> *Regards,*
>>>
>>> *S. Thiruvikraman M.Sc.,*
>>>
>>> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957> *
>>>
>>> *  <http://www.linkedin.com/in/vikramangis>
>>> <https://www.facebook.com/vikramgeek> *
>>>
>>>
>>>
>>> On Mon, Feb 3, 2014 at 1:26 PM, carlo cancellieri <
>>> carlo.cancelli...@geo-solutions.it> wrote:
>>>
>>>> Vikram,
>>>> Could you give me some more info about your setup?
>>>> Have you configured a proxy?
>>>>
>>>> Ps: please keep the ML into the loop.
>>>>
>>>> Cheers,
>>>> Carlo
>>>> Il 03/feb/2014 06:38 "Vikram Santhanam"  ha
>>>> scritto:
>>>>
>>>>  Dear Carlo,
>>>>> i am trying 3 geoserver in 3 instances of tomcat.
>>>>> Tomcat is working fine but only 1 instance of geoserver is working. Other 
>>>>> 2
>>>>> is not working. ? Can you give me the solution ?
>>>>>
>>>>>
>>>>>  *Regards,*
>>>>>
>>>>> *S. Thiruvikraman M.Sc.,*
>>>>>
>>>>> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957>
>>>>> *
>>>>>
>>>>> *  <http://www.linkedin.com/in/vikramangis>
>>>>> <https://www.facebook.com/vikramgeek> *
>>>>>
>>>>>
>>>>>
>>>>> On Mon, Jan 27, 2014 at 7:26 PM, carlo cancellieri <
>>>>> carlo.cancelli...@geo-solutions.it> wrote:
>>>>>
>>>>>> Hi,
>>>>>>  probably you may:
>>>>>> 0. be sure that you are caching tiles on the client side (this should
>>>>>> be transparent using get requests)
>>>>>> 1. start caching data on the server side:
>>>>>> http://docs.geoserver.org/latest/en/user/geowebcache/using.html
>>>>>> 2. optimize datasources (optimizing rasters, simplifying geometries,
>>>>>> etc)
>>>>>> 3. optimize queries (using tiling, using png8, etc)
>>>>>> 4. clusterize geoservers
>>>>>>
>>>>>> If you need more details, please post some of the query you are using.
>>>>>> Cheers,
>>>>>> Carlo
>>>>>>
>>>>>>
>>>>>> 2014-01-27 Vikram Santhanam 
>>>>>>
>>>>>>> Dear Sir/Madam,
>>>>>>>  How to handle requests for Geoserver and make the
>>>>>>> geoserver to work faster. I am using layer switcher. For each layer it 
>>&g

Re: [Geoserver-users] Geoserver Configuration

2014-02-03 Thread carlo cancellieri
Ciao Vikram,

 I think you are still missing the following 2 steps:

1. Configure a proxy to route requests to the configured tomcat instances:
http://tomcat.apache.org/tomcat-6.0-doc/proxy-howto.html

2. Configure the proxy url on geoserver:
http://docs.geoserver.org/stable/en/user/webadmin/server/globalsettings.html

PS: please keep the ML into the loop.

Cheers,
Carlo


2014-02-03 Vikram Santhanam :

> yeah i have changed in server.xml
> reference :
> http://www.ansoncheunghk.info/article/5-steps-install-multiple-apache-tomcat-instance-windows
> I st tomcat is default and the following config are the 2nd and 3rd
> instance.,
>
> Server shutdonw port : 8006
> HTTP : 8081
> AJP : 8010
>
>
>  Server shutdonw port : 8007
> HTTP : 8082
> AJP : 8011
>
>
> *Regards,*
>
> *S. Thiruvikraman M.Sc.,*
>
> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957> *
>
> *  <http://www.linkedin.com/in/vikramangis>
> <https://www.facebook.com/vikramgeek> *
>
>
>
> On Mon, Feb 3, 2014 at 1:26 PM, carlo cancellieri <
> carlo.cancelli...@geo-solutions.it> wrote:
>
>> Vikram,
>> Could you give me some more info about your setup?
>> Have you configured a proxy?
>>
>> Ps: please keep the ML into the loop.
>>
>> Cheers,
>> Carlo
>> Il 03/feb/2014 06:38 "Vikram Santhanam"  ha
>> scritto:
>>
>>  Dear Carlo,
>>> i am trying 3 geoserver in 3 instances of tomcat. Tomcat
>>> is working fine but only 1 instance of geoserver is working. Other 2 is not
>>> working. ? Can you give me the solution ?
>>>
>>>
>>>  *Regards,*
>>>
>>> *S. Thiruvikraman M.Sc.,*
>>>
>>> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957> *
>>>
>>> *  <http://www.linkedin.com/in/vikramangis>
>>> <https://www.facebook.com/vikramgeek> *
>>>
>>>
>>>
>>> On Mon, Jan 27, 2014 at 7:26 PM, carlo cancellieri <
>>> carlo.cancelli...@geo-solutions.it> wrote:
>>>
>>>> Hi,
>>>>  probably you may:
>>>> 0. be sure that you are caching tiles on the client side (this should
>>>> be transparent using get requests)
>>>> 1. start caching data on the server side:
>>>> http://docs.geoserver.org/latest/en/user/geowebcache/using.html
>>>> 2. optimize datasources (optimizing rasters, simplifying geometries,
>>>> etc)
>>>> 3. optimize queries (using tiling, using png8, etc)
>>>> 4. clusterize geoservers
>>>>
>>>> If you need more details, please post some of the query you are using.
>>>> Cheers,
>>>> Carlo
>>>>
>>>>
>>>> 2014-01-27 Vikram Santhanam 
>>>>
>>>>> Dear Sir/Madam,
>>>>>  How to handle requests for Geoserver and make the
>>>>> geoserver to work faster. I am using layer switcher. For each layer it is
>>>>> taking more requests. how to control that. ?
>>>>>
>>>>> *Regards,*
>>>>>
>>>>>  *S. Thiruvikraman M.Sc.,*
>>>>>
>>>>> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957>
>>>>> *
>>>>>
>>>>> * <https://www.facebook.com/vikramgeek>
>>>>> <http://www.linkedin.com/in/vikramangis> *
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> CenturyLink Cloud: The Leader in Enterprise Cloud Services.
>>>>> Learn Why More Businesses Are Choosing CenturyLink Cloud For
>>>>> Critical Workloads, Development Environments & Everything In Between.
>>>>> Get a Quote or Start a Free Trial Today.
>>>>>
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
>>>>> ___
>>>>> Geoserver-users mailing list
>>>>> Geoserver-users@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> ==
>>>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>>>> more information.
>>>> ==
>>>>
>>>> Dott. Carlo Cancellieri
>>>>

Re: [Geoserver-users] Geoserver Configuration

2014-01-28 Thread carlo cancellieri
Vikram,

Dear Carlo,
>
> http://docs.geoserver.org/stable/en/user/production/container.html#optimize-your-jvm
>
> How to configure JVM settings..I am using tomcat. I don't know how to
> apply the settings which is mentioned in the above doc..
>

Take also a look here:
http://geoserver.geo-solutions.it/edu/en/adv_gsconfig/gsproduction.html
http://boundlessgeo.com/whitepaper/geoserver-production-2/

Cheers,
Carlo



>
>
> *Regards,*
>
>  *S. Thiruvikraman M.Sc.,*
>
> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957> *
>
> *  <http://www.linkedin.com/in/vikramangis>
> <https://www.facebook.com/vikramgeek> *
>
>
>
> On Tue, Jan 28, 2014 at 2:32 PM, carlo cancellieri <
> carlo.cancelli...@geo-solutions.it> wrote:
>
>> Vikram,
>>
>>  I am using "sample map" as the base layer and 100 overlays(single
>>> tile). Total no. of request is around 125 to geoserver on zoom/pan for one
>>> time. This map will be used by n number of users.
>>>
>>
>> Probably adding a bit less then 100 layers to the map component will
>> solve most of your problems :).
>>
>> If you need all of those layers try setting 'visibility=false' to most of
>> them this may avoid sending hundreds of queries for not visible (z-index)
>> layers.
>>
>> To understand if you need a cluster of geoserver, could you specify what
>> will be the size of 'n' (10, 100, 1000, 10.000 or more)?
>>
>>
>>
>>>  *These are my problems*
>>> 1. Geoserver is not responding properly
>>> 2. Responses is time consuming
>>>
>>
>> Mmm this may never (or very rarely) happen Which kind of store you
>> are using? (huge shapefile?)
>> Consider pre-processing the data before ingestion to optimize runtime
>> queries.
>> btw which GeoServer version are you using?
>>
>>
>>>
>>> *My queries.*
>>> 1. How to control the above mentioned requests...?
>>>
>>
>> Consider also installing the control flow module:
>>
>> http://docs.geoserver.org/stable/en/user/extensions/controlflow/index.html
>>
>>
>>>  2. Right now I am accessing GeoWebCache from this URL 
>>> *"../geoserver/gwc/service/wms".
>>> *How to access cached tiles directly...?
>>>
>>
>> Look at this example:
>>  http://dev.openlayers.org/sandbox/tschaub/gwc/examples/geowebcache.html
>>
>> Try also WMTS:
>> http://openlayers.org/dev/examples/wmts.html
>>
>>
>>
>>> 3. How to configure Geoserver for production environment. I had a glance
>>> in documentation of geoserver about configuring. Is that enough or some
>>> more modification is needed ?
>>>
>>
>> Read carefully this documentation:
>> http://docs.geoserver.org/stable/en/user/production/index.html
>>
>> Generally speaking applying those suggestion you may have a quite
>> performant environment, anyhow
>> if you need more support for your production environment you may also
>> consider contacting technical commercial support:
>> http://geoserver.org/display/GEOS/Commercial+Support
>>
>>
>> Cheers,
>> Carlo
>>
>> --
>> ==
>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>> more information.
>> ==
>>
>>  Dott. Carlo Cancellieri
>> @cancellieric
>> Software Engineer
>>
>> GeoSolutions S.A.S.
>> Via Poggio alle Viti 1187
>> 55054  Massarosa (LU)
>> Italy
>> phone: +39 0584 962313
>> fax:   +39 0584 1660272
>>
>> http://www.geo-solutions.it
>> http://twitter.com/geosolutions_it
>>
>> ---
>>
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver Configuration

2014-01-28 Thread carlo cancellieri
Vikram,

 I am using "sample map" as the base layer and 100 overlays(single tile).
> Total no. of request is around 125 to geoserver on zoom/pan for one time.
> This map will be used by n number of users.
>

Probably adding a bit less then 100 layers to the map component will solve
most of your problems :).

If you need all of those layers try setting 'visibility=false' to most of
them this may avoid sending hundreds of queries for not visible (z-index)
layers.

To understand if you need a cluster of geoserver, could you specify what
will be the size of 'n' (10, 100, 1000, 10.000 or more)?



>  *These are my problems*
> 1. Geoserver is not responding properly
> 2. Responses is time consuming
>

Mmm this may never (or very rarely) happen Which kind of store you are
using? (huge shapefile?)
Consider pre-processing the data before ingestion to optimize runtime
queries.
btw which GeoServer version are you using?


>
> *My queries.*
> 1. How to control the above mentioned requests...?
>

Consider also installing the control flow module:
http://docs.geoserver.org/stable/en/user/extensions/controlflow/index.html


>  2. Right now I am accessing GeoWebCache from this URL 
> *"../geoserver/gwc/service/wms".
> *How to access cached tiles directly...?
>

Look at this example:
http://dev.openlayers.org/sandbox/tschaub/gwc/examples/geowebcache.html

Try also WMTS:
http://openlayers.org/dev/examples/wmts.html



> 3. How to configure Geoserver for production environment. I had a glance
> in documentation of geoserver about configuring. Is that enough or some
> more modification is needed ?
>

Read carefully this documentation:
http://docs.geoserver.org/stable/en/user/production/index.html

Generally speaking applying those suggestion you may have a quite
performant environment, anyhow
if you need more support for your production environment you may also
consider contacting technical commercial support:
http://geoserver.org/display/GEOS/Commercial+Support


Cheers,
Carlo

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver Configuration

2014-01-27 Thread carlo cancellieri
Hi,
 probably you may:
0. be sure that you are caching tiles on the client side (this should be
transparent using get requests)
1. start caching data on the server side:
http://docs.geoserver.org/latest/en/user/geowebcache/using.html
2. optimize datasources (optimizing rasters, simplifying geometries, etc)
3. optimize queries (using tiling, using png8, etc)
4. clusterize geoservers

If you need more details, please post some of the query you are using.
Cheers,
Carlo


2014-01-27 Vikram Santhanam 

> Dear Sir/Madam,
>  How to handle requests for Geoserver and make the geoserver
> to work faster. I am using layer switcher. For each layer it is taking more
> requests. how to control that. ?
>
> *Regards,*
>
>  *S. Thiruvikraman M.Sc.,*
>
> *Ph: +919746149212 <%2B919746149212> , +919003419957 <%2B919003419957> *
>
> * <https://www.facebook.com/vikramgeek>
> <http://www.linkedin.com/in/vikramangis> *
>
>
>
> --
> CenturyLink Cloud: The Leader in Enterprise Cloud Services.
> Learn Why More Businesses Are Choosing CenturyLink Cloud For
> Critical Workloads, Development Environments & Everything In Between.
> Get a Quote or Start a Free Trial Today.
>
> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Bounds of datastore based on "empty" Shapefile

2014-01-24 Thread carlo cancellieri
Andrea,
what about performing a count then add something like this?
If count ==0 then
Bbox = 0 0 0 0
Carlo

Il 21/gen/2014 17:37 "Andrea Aime"  ha
scritto:
>
> On Tue, Jan 21, 2014 at 5:08 PM, Damiano Albani 
wrote:
>>
>> Hello,
>>
>> When uploading an "empty" Shapefile (i.e. with no features), it looks
like GeoServer configures the datastore with bounds being equal to what is
explicitly specified in the Shapefile.
>> And clicking on "compute from data" in the configuration page doesn't
make the value change.
>> So what bounds should be advertised for layers of this kind? All zeros?
That's what OGR does apparently:
>>
>> $ ogrinfo -al empty.shp
>>   Layer name: empty
>>   Geometry: Line String
>>   Feature Count: 0
>>   Extent: (19496742305194890055511892394450289164288.00,
19496742305194890055511892394450289164288.00) -
(-19496742305194890055511892394450289164288.00,
-19496742305194890055511892394450289164288.00)
>>   Layer SRS WKT:
>>   GEOGCS["GCS_WGS_84",
>>   DATUM["WGS_84",
>>   SPHEROID["WGS84",6378137,000,298,257223563]],
>>   PRIMEM["Greenwich",0.0],
>>   UNIT["Degree",0.0174532925199433]]
>>   ID: String (10.0)
>>   ...
>>
>> $ ogrinfo -sql 'RECOMPUTE EXTENT ON empty' empty.shp
>>
>> $ ogrinfo -al empty.shp
>>   Layer name: empty
>>   Geometry: Line String
>>   Feature Count: 0
>>   Extent: (0.00, 0.00) - (0.00, 0.00)
>>   Layer SRS WKT:
>>   GEOGCS["GCS_WGS_84",
>>   DATUM["WGS_84",
>>   SPHEROID["WGS84",6378137,000,298,257223563]],
>>   PRIMEM["Greenwich",0.0],
>>   UNIT["Degree",0.0174532925199433]]
>>   ID: String (10.0)
>>   ...
>>
>> I know it doesn't make much sense to work with empty Shapefiles but I
have to handle this case, having a user-exposed GeoServer.
>> More precisely, I have an application which queries GeoServer for layers
information and then feeds it to OpenLayers for WMS rendering.
>> And I can confirm that OpenLayers really chokes on extent values like
the weird one shown above :-)
>
>
> GeoServer does not have a way to dodge the values contained in the
headers and do a manual scan.
> It would be possible to implement it though, but it would have to be
optional, scanning thorough large
> data sources can take ages (as in hours, and during that time, the admin
interface is locked)
>
> Cheers
> Andrea
>
> --
> == Our support, Your Success! Visit http://opensdi.geo-solutions.it for
more information ==
>
> Ing. Andrea Aime
> @geowolf
> Technical Lead
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313
> fax: +39 0584 1660272
> mob: +39  339 8844549
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> ---
>
>
--
> CenturyLink Cloud: The Leader in Enterprise Cloud Services.
> Learn Why More Businesses Are Choosing CenturyLink Cloud For
> Critical Workloads, Development Environments & Everything In Between.
> Get a Quote or Start a Free Trial Today.
>
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] JMeter test plans for GeoServer

2013-12-19 Thread carlo cancellieri
Jonathan,
 it leverages on a maven jmeter plugin since it is built to be configured
in a jenkins job (typically at the end of a deploy job). It will also
generate an html page with charts results (which can be configured to be
shown on the jenkins page).
To use on a command line you could take a look at the run.sh script which
simply configure and run mvn.
Cheers,
Carlo


2013/12/19 Jonathan Moules 

> Thanks for the replies. The GeoSolutions page (
> http://geoserver.geo-solutions.it/edu/en/adv_gsconfig/jmeter.html) was a
> good starting point.
>
> Carlo - looks interesting but I'm not proficient at compiling so I'll have
> to pass on it.
>
> Cheers,
> Jonathan
>
>
> On 17 December 2013 10:36, carlo cancellieri <
> carlo.cancelli...@geo-solutions.it> wrote:
>
>> I'm using this:
>> https://github.com/ccancellieri/GeoServerStressTest
>> which is a quite simple, alpha version.
>>
>> The Workflow:
>> GetCapabilities -> CSV -> randomize bbox and some other params ->
>> Jmeeter stress tests -> generate reports
>>
>> Cheers,
>> Carlo
>>
>>
>>
>> 2013/12/17 Jonathan Moules 
>>
>>> Hi List,
>>> Does anyone have any JMeter test plans they can share for testing
>>> GeoServer with? I figure it'll give me a running start rather than having
>>> to figure out JMeter from scratch.
>>>
>>> I managed to find -
>>> http://www.lydonchandra.com/content/stress-testing-wms-jmeter - which
>>> got me a running install, but the jmx file link is a 404.
>>>
>>> Thanks,
>>> Jonathan
>>>
>>> This transmission is intended for the named addressee(s) only and may
>>> contain sensitive or protectively marked material up to RESTRICTED and
>>> should be handled accordingly. Unless you are the named addressee (or
>>> authorised to receive it for the addressee) you may not copy or use it, or
>>> disclose it to anyone else. If you have received this transmission in error
>>> please notify the sender immediately. All email traffic sent to or from us,
>>> including without limitation all GCSX traffic, may be subject to recording
>>> and/or monitoring in accordance with relevant legislation.
>>> --
>>> Rapidly troubleshoot problems before they affect your business. Most IT
>>> organizations don't have a clear picture of how application performance
>>> affects their revenue. With AppDynamics, you get 100% visibility into
>>> your
>>> Java,.NET, & PHP application. Start your 15-day FREE TRIAL of
>>> AppDynamics Pro!
>>>
>>> http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
>>> ___
>>> Geoserver-users mailing list
>>> Geoserver-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>>
>>>
>>
>>
>> --
>> *== *
>> *GeoSolutions will be closed for Christmas Holidays from 23/12/2013 to
>> 06/01/2014*
>> *==*
>>
>> Dott. Carlo Cancellieri
>> @cancellieric
>> Software Engineer
>>
>> GeoSolutions S.A.S.
>> Via Poggio alle Viti 1187
>> 55054  Massarosa (LU)
>> Italy
>> phone: +39 0584 962313
>> fax:   +39 0584 1660272
>>
>> http://www.geo-solutions.it
>> http://twitter.com/geosolutions_it
>>
>> ---
>>
>
>
> This transmission is intended for the named addressee(s) only and may
> contain sensitive or protectively marked material up to RESTRICTED and
> should be handled accordingly. Unless you are the named addressee (or
> authorised to receive it for the addressee) you may not copy or use it, or
> disclose it to anyone else. If you have received this transmission in error
> please notify the sender immediately. All email traffic sent to or from us,
> including without limitation all GCSX traffic, may be subject to recording
> and/or monitoring in accordance with relevant legislation.
>



-- 
*== *
*GeoSolutions will be closed for Christmas Holidays from 23/12/2013 to
06/01/2014*
*==*

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] NullPointerException upon starting GeoServer 2.4.2 via Tomcat 7

2013-12-17 Thread carlo cancellieri
Menashè,
 geoserver ships many dependencies so you may encounter many other problem
(at runtime) if you deploy it in the same container with other application.

Usually we suggest to configure multiple instances of tomcat to keep
classloaders separated.

Alternatively you could try to use jboss which supports classloader
isolation (
http://geo-solutions.blogspot.it/2009/07/deploying-geoserver-on-jboss-as-5x.html
).

Cheers,
Carlo

-- 
*== *
*GeoSolutions will be closed for Christmas Holidays from 23/12/2013 to
06/01/2014*
*==*

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] JMeter test plans for GeoServer

2013-12-17 Thread carlo cancellieri
I'm using this:
https://github.com/ccancellieri/GeoServerStressTest
which is a quite simple, alpha version.

The Workflow:
GetCapabilities -> CSV -> randomize bbox and some other params ->
Jmeeter stress tests -> generate reports

Cheers,
Carlo



2013/12/17 Jonathan Moules 

> Hi List,
> Does anyone have any JMeter test plans they can share for testing
> GeoServer with? I figure it'll give me a running start rather than having
> to figure out JMeter from scratch.
>
> I managed to find -
> http://www.lydonchandra.com/content/stress-testing-wms-jmeter - which got
> me a running install, but the jmx file link is a 404.
>
> Thanks,
> Jonathan
>
> This transmission is intended for the named addressee(s) only and may
> contain sensitive or protectively marked material up to RESTRICTED and
> should be handled accordingly. Unless you are the named addressee (or
> authorised to receive it for the addressee) you may not copy or use it, or
> disclose it to anyone else. If you have received this transmission in error
> please notify the sender immediately. All email traffic sent to or from us,
> including without limitation all GCSX traffic, may be subject to recording
> and/or monitoring in accordance with relevant legislation.
>
> --
> Rapidly troubleshoot problems before they affect your business. Most IT
> organizations don't have a clear picture of how application performance
> affects their revenue. With AppDynamics, you get 100% visibility into your
> Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics
> Pro!
> http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
*== *
*GeoSolutions will be closed for Christmas Holidays from 23/12/2013 to
06/01/2014*
*==*

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] NullPointerException upon starting GeoServer 2.4.2 via Tomcat 7

2013-12-16 Thread carlo cancellieri
Menashè,
 do you have any other application deployed in the same tomcat instance?

Take also a look here:
http://osgeo-org.1560.x6.nabble.com/Problem-parsing-GML-with-geotools-in-Jdeveloper-JDK-1-5-td4327418.html

Cheers,
Carlo


2013/12/16 carlo cancellieri 

> Menashè,
>  this may not be related anyhow, do you have the chance to use the
> standard Oracle JVM?
> Cheers,
> Carlo
>
>
> 2013/12/16 menashe.eliezer 
>
> Hello,
>> "FAIL - Application at context path /geoserver could not be started"
>> and the attached Tomcat log starts with:
>> java.lang.NullPointerException
>> at
>>
>> org.eclipse.xsd.impl.XSDSchemaImpl.reconcileAttributes(XSDSchemaImpl.java:2065)
>>
>> catalina-16-23.out
>> <http://osgeo-org.1560.x6.nabble.com/file/n5094496/catalina-16-23.out>
>>
>> The war file was downloaded correctly and extracted by Tomcat. The file
>> permissions are correct.
>> Other applications work well under the same Tomcat 7.
>>
>> Debian ("Jessie")
>> Tomcat 7.0.42
>>
>> java version "1.7.0_21"
>> OpenJDK Runtime Environment (IcedTea 2.3.9) (7u21-2.3.9-5)
>> OpenJDK 64-Bit Server VM (build 23.7-b01, mixed mode)
>>
>>
>> Any ideas?
>>
>>
>> Thanks for your attention,
>> Menashè
>>
>>
>>
>> --
>> View this message in context:
>> http://osgeo-org.1560.x6.nabble.com/NullPointerException-upon-starting-GeoServer-2-4-2-via-Tomcat-7-tp5094496.html
>> Sent from the GeoServer - User mailing list archive at Nabble.com.
>>
>>
>> --
>> Rapidly troubleshoot problems before they affect your business. Most IT
>> organizations don't have a clear picture of how application performance
>> affects their revenue. With AppDynamics, you get 100% visibility into your
>> Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics
>> Pro!
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
>> ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>
>
>
> --
> *== *
> *GeoSolutions will be closed for Christmas Holidays from 23/12/2013 to
> 06/01/2014*
> *==*
>
> Dott. Carlo Cancellieri
> @cancellieric
> Software Engineer
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313
> fax:   +39 0584 1660272
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> ---
>



-- 
*== *
*GeoSolutions will be closed for Christmas Holidays from 23/12/2013 to
06/01/2014*
*==*

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] NullPointerException upon starting GeoServer 2.4.2 via Tomcat 7

2013-12-16 Thread carlo cancellieri
Menashè,
 this may not be related anyhow, do you have the chance to use the standard
Oracle JVM?
Cheers,
Carlo


2013/12/16 menashe.eliezer 

> Hello,
> "FAIL - Application at context path /geoserver could not be started"
> and the attached Tomcat log starts with:
> java.lang.NullPointerException
> at
>
> org.eclipse.xsd.impl.XSDSchemaImpl.reconcileAttributes(XSDSchemaImpl.java:2065)
>
> catalina-16-23.out
> <http://osgeo-org.1560.x6.nabble.com/file/n5094496/catalina-16-23.out>
>
> The war file was downloaded correctly and extracted by Tomcat. The file
> permissions are correct.
> Other applications work well under the same Tomcat 7.
>
> Debian ("Jessie")
> Tomcat 7.0.42
>
> java version "1.7.0_21"
> OpenJDK Runtime Environment (IcedTea 2.3.9) (7u21-2.3.9-5)
> OpenJDK 64-Bit Server VM (build 23.7-b01, mixed mode)
>
>
> Any ideas?
>
>
> Thanks for your attention,
> Menashè
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/NullPointerException-upon-starting-GeoServer-2-4-2-via-Tomcat-7-tp5094496.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> Rapidly troubleshoot problems before they affect your business. Most IT
> organizations don't have a clear picture of how application performance
> affects their revenue. With AppDynamics, you get 100% visibility into your
> Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics
> Pro!
> http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
*== *
*GeoSolutions will be closed for Christmas Holidays from 23/12/2013 to
06/01/2014*
*==*

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:   +39 0584 1660272

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

---
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Publishing layers from my application

2013-12-11 Thread carlo cancellieri
Ciao Sofia,

I'm currently working on a project in which we create new layers from
> java's web application. We're trying to accomplish this by adding tables
> (which would represent new layers) on to the postgres database, and then
> publishing them from geoserver. I'd like to know if it would be possible to
> publish those layers from the application itself without making use of the
> geoserver administration console. Is there an API to do this?
>

 you could use the geoserver REST interface to configure the geoserver
catalog and settings.
If you don't want to implement your own library interface you could try to
take a look to geoserver manager:
http://docs.geoserver.org/stable/en/user/rest/examples/java.html

Other languages:
http://docs.geoserver.org/stable/en/user/rest/examples/index.html

Cheers,
Carlo

>
-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] adding a layer in Geoserver using REST API from the POSTGreSQL Table

2013-11-22 Thread carlo cancellieri
Ciao,
 take also a look here:
http://docs.geoserver.org/latest/en/user/rest/examples/index.html
You can find samples to publish, modify and create new resources in
geoserver using curl and much more.
Here is the reference manual:
http://docs.geoserver.org/latest/en/user/rest/index.html

Cheers,
Carlo


2013/11/21 Rahkonen Jukka 

> Hi,
>
> Have you read and tried this recipe
> http://boundlessgeo.com/2012/10/adding-layers-to-geoserver-using-the-rest-api/?
>  If it does not work for you, tell where it fails and what happens.
>  Describe then also your environment (Geoserver version, jre version...)
>
> -Jukka Rahkonen-
>
> pankaj123 wrote:
> >
> > Hii
> >
> > I want to add a new feature layer in POSTGReSQL from open layers.
> > I got the answer from openlayers forum as...
> >
> > http://osgeo-org.1560.x6.nabble.com/creating-a-new-layer-in-database-
> > td5089934.html
> >
> > Using openlayers directly you can't do this:
> > You need to call from openlayers some server-side code (i.e. java or c#
> or
> > whatever you wanna use) that, in order:
> > 1. enstablish a connection to postgres db 2. launch a series of sql
> commands
> > that create a table, fields, indices and so on 3. call the geoserver
> rest api and
> > configure geoserver accordingly:
> >
> > I have created table using the c# code.
> >
> > Now I want to publish a layer in GeoServer using REST API.
> >
> > I saw the documentation of GEoSevver. I could not find anything which
> can help
> > me do this. I can see the existing layers, workspaces etc. but I cannot
> create any
> > layer.
> >
> > Any help..
> >
> >
> > Thanks and Regards
> > Pankaj Bansal
> >
> >
> >
> > --
> > View this message in context:
> http://osgeo-org.1560.x6.nabble.com/adding-a-
> > layer-in-Geoserver-using-REST-API-from-the-POSTGreSQL-Table-
> > tp5090538.html
> > Sent from the GeoServer - User mailing list archive at Nabble.com.
> >
> >
> --
> > Shape the Mobile Experience: Free Subscription Software experts and
> > developers: Be at the forefront of tech innovation.
> > Intel(R) Software Adrenaline delivers strategic insight and game-changing
> > conversations that shape the rapidly evolving mobile landscape. Sign up
> now.
> >
> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
> > ___
> > Geoserver-users mailing list
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
> --
> Shape the Mobile Experience: Free Subscription
> Software experts and developers: Be at the forefront of tech innovation.
> Intel(R) Software Adrenaline delivers strategic insight and game-changing
> conversations that shape the rapidly evolving mobile landscape. Sign up
> now.
> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Image Mosaics and TIME dimension

2013-11-14 Thread carlo cancellieri
Ian,

2013/11/14 Ian Turton 

> I'm setting up an image mosaic with a time dimension but I've run in to a
> problem and I can't tell if it is that I don't  understand the spec or that
> I'm doing it wrong :-) I have a set of imagery that covers a country and
> every so often I get an update for a small area of the country. I need to
> add those new images and for the general user (with no time set) see the
> latest imagery for the whole country. However all I'm getting back are the
> areas with the newest images in and blank/black areas for the rest of the
> country so if I update one granule all I see is one small patch of imagery.
> I was expecting to get the latest image for each granule regardless of when
> it was updated.
>

as far as I remember the Mosaic should use the latest time as default
dimension.
So if you configure a mosaic with the following set of granules:
A 12:00
B 12:00
C 12:01
You'll have a mosaic with 2 times and the default is the 12:01.

If you query this store without any dimension filter you'll get only the
granule C.

>
> Can anyone shed some light on this? have I misconfigured something or do I
> need to write a modified data source to handle this use case?
>

To get all the granules you have to specify a time range from 12:00 to
12:01.
Cheers,
Carlo


>
> Cheers
>
> Ian
>
> --
> Ian Turton
>
>
> --
> DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps
> OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
> Free app hosting. Or install the open source package on any LAMP server.
> Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
> http://pubads.g.doubleclick.net/gampad/clk?id=63469471&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Layer Preview triggers 62 console WARN "Unable to find property" messages.

2013-11-06 Thread carlo cancellieri
David,
 those WARN messages are coming out from the wicket library which sometime
needs strong type definition and can be ignored.
Follow J. suggestion setting logs to production level.
cheers,
carlo

First: geoserver works (duh) and works for me.   However its console
> logging is disturbing.Should I be disturbed?
>
> I see 62 WARN level "Unable to find property" log entries (on console)
> upon clicking "Layer Preview" from the /geoserver home page.
>
> MSWindows 7, JDK 1.6 or 1.7 (take your pick), geoserver-2.4.1-bin.zip or
> geoserver-2.4.0-bin.zip.  Jetty run time.
> Also saw this with geoserver-2.3.2-war.zip housed in Tomcat.
> Oh... and in JBoss, which is where I started.
>
> Instructions to reproduce: Download and unzip, set environment, startup,
> wait, surf to localhost:8080/geoserver, click "Layer Preview".  Bam.
>
> Does not seem to matter what layers are configured.
>
> 62 different warnings log messages (visible on console) of the form:
>
> 2013-11-05 13:33:00,769 WARN [geoserver.web] - Unable to find property:
> 'format.wms.application/vnd.google-earth.kmz xml' for component:
> [class=org.geoserver.web.demo.MapPreviewPage]
> 
> 2013-11-05 13:33:00,808 WARN [geoserver.web] - Unable to find property:
> 'format.wfs.KML' for component:
> [class=org.geoserver.web.demo.MapPreviewPage]
>
> Does the out-of-the-box geoserver spew these console warnings for first
> time users?Are they spurious or do they matter?
>
> Thank you,  First time post,
> David Gaarsoe
>
>
>  P Please consider the environment before printing this email.
> --
> This communication may contain information that is confidential,
> privileged or subject to copyright. If you are not the intended recipient,
> please advise by return e-mail and delete the message and any attachments
> immediately without reading, copying or forwarding to others.
>
>
>
>
> --
> November Webinars for C, C++, Fortran Developers
> Accelerate application performance with scalable programming models.
> Explore
> techniques for threading, error checking, porting, and tuning. Get the most
> from the latest Intel processors and coprocessors. See abstracts and
> register
> http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
> --
> <https://lists.sourceforge.net/lists/listinfo/geoserver-users>
> ==
> <https://lists.sourceforge.net/lists/listinfo/geoserver-users>
> Our support, Your Success! Visit
> <https://lists.sourceforge.net/lists/listinfo/geoserver-users>
> http://opensdi.geo-solutions.it for more information.
> ==
>
> Dott. Carlo Cancellieri
> @cancellieric
> Software Engineer
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313
> mobile: +39 3371094494
> fax:   +39 0584 1660272
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> ---
>
--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geo server log issue

2013-10-24 Thread carlo cancellieri
Rakesh,
It's a command line utility take a look here:
 http://docs.geoserver.org/stable/en/user/rest/examples/curl.html

Or you can also use Poster which is a browser plugin (available for
android, firefox, chrome, ...)
https://addons.mozilla.org/En-us/firefox/addon/poster/

Cheers,
Carlo


2013/10/24 Rakesh Sharma 

> Sir how to manually setup a call through curl in geoserver.at which
> location/file I need to put these script.
>
>
> On Thu, Oct 24, 2013 at 4:01 PM, carlo cancellieri <
> carlo.cancelli...@geo-solutions.it> wrote:
>
>> Rakesh,
>>
>>  seems that the client is not adding the User key to the request:
>>
>> Try using curl to manually setup a call f.e.:
>>
>> curl -v -u ${USERNAME}:${PASS} -XGET -H "REMOTE_USER: ${USERNAME}"
>> ${HOST}/geoserver/sf/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=sf:streams&maxFeatures=50&outputFormat=json
>>
>> Remember to substitute the ${} with appropriate values
>>
>> Let me know.
>>
>> Cheers,
>> Carlo
>>
>>
>>
>> 2013/10/23 Rakesh Sharma 
>>
>>> Dear Sir,
>>>  I have given LayerPreview Authentication for WFS(*) and try
>>> to access the services   which is provided by WFS then its asking for
>>> authentication  which is working fine but still not getting the user login
>>> information in log file.
>>>  Here I am attaching the
>>>(1) Complete log information
>>> which is generated by geoserver.
>>>(2) Complete log information
>>> which is generated by default under *logs
>>>*(3) Complete log
>>> information which is generated after installing monitoring plugin.
>>>        (4)header.ftl
>>>(5)content.ftl
>>>(6)footer.ftl
>>>
>>>Please help me to solve the issue.waiting for reply.
>>>
>>> Thanks and Regards
>>> Rakesh Kumar Sharma
>>>
>>>
>>> carlo cancellieri wrote:
>>>
>>> Rakesh,
>>>  could you attach the complete Request dump (headers, request, etc...)?
>>> I'd like to verify if LayerPreviews attach the user information to the
>>> request.
>>> Cheers,
>>> Carlo
>>>
>>> PS: keep the List in CC, in the case some other people may want to
>>> participate.
>>>
>>>
>>> 2013/10/22 Rakesh Kumar Sharma 
>>>
>>>>  Dear Sir,
>>>>  As per your instruction I have set authrntication rule for
>>>> layer.Now its asking for username/password for desired user but still not
>>>> able to record out the *username* of that geoserver user in that log
>>>> file.wating for your reply
>>>>
>>>> Thanks and Regards
>>>> Rakesh
>>>>
>>>>  Kumar,
>>>> as default LayerPreview does not ask for user authentication since all
>>>> the layer are configured for free access.
>>>>  looking at the documentation I see:
>>>>
>>>>Remote user The username specified parsed of the request. Only
>>>> available when request included credentials for authentication. String
>>>> This probably means that you have to force your client to use
>>>> authentication on layer request.
>>>>  Try to setup authentication rules for some layer forcing
>>>> authorization requests:
>>>> http://docs.geoserver.org/stable/en/user/security/layer.html
>>>>  This should add credentials to the request.
>>>>
>>>>  Cheers,
>>>> Carlo
>>>>
>>>>
>>>> 2013/10/21 Rakesh Kumar Sharma 
>>>>
>>>>>  Dear sir,
>>>>>  Waiting for your reply..
>>>>>
>>>>> Thanks and Regards
>>>>> Rakesh
>>>>>
>>>>>
>>>>> Rakesh Kumar Sharma wrote:
>>>>>
>>>>> Dear carlo cancellieri,
>>>>>
>>>>> yes, I have configured through audit mode only .I am able to get all
>>>>> the information like StartTime,
>>>>> EndTime,TotalTime,RemoteAddr,RemoteHost,Host name but only *RemoteUser
>>>>> *details is not coming.
>>>>> I have already

Re: [Geoserver-users] Geo server log issue

2013-10-24 Thread carlo cancellieri
Rakesh,

 seems that the client is not adding the User key to the request:

Try using curl to manually setup a call f.e.:

curl -v -u ${USERNAME}:${PASS} -XGET -H "REMOTE_USER: ${USERNAME}"
${HOST}/geoserver/sf/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=sf:streams&maxFeatures=50&outputFormat=json

Remember to substitute the ${} with appropriate values

Let me know.

Cheers,
Carlo



2013/10/23 Rakesh Sharma 

> Dear Sir,
>  I have given LayerPreview Authentication for WFS(*) and try
> to access the services   which is provided by WFS then its asking for
> authentication  which is working fine but still not getting the user login
> information in log file.
>  Here I am attaching the
>(1) Complete log information
> which is generated by geoserver.
>(2) Complete log information
> which is generated by default under *logs
>*(3) Complete log information
> which is generated after installing monitoring plugin.
>(4)header.ftl
>(5)content.ftl
>(6)footer.ftl
>
>Please help me to solve the issue.waiting for reply.
>
> Thanks and Regards
> Rakesh Kumar Sharma
>
>
> carlo cancellieri wrote:
>
> Rakesh,
>  could you attach the complete Request dump (headers, request, etc...)?
> I'd like to verify if LayerPreviews attach the user information to the
> request.
> Cheers,
> Carlo
>
> PS: keep the List in CC, in the case some other people may want to
> participate.
>
>
> 2013/10/22 Rakesh Kumar Sharma 
>
>>  Dear Sir,
>>  As per your instruction I have set authrntication rule for
>> layer.Now its asking for username/password for desired user but still not
>> able to record out the *username* of that geoserver user in that log
>> file.wating for your reply
>>
>> Thanks and Regards
>> Rakesh
>>
>>  Kumar,
>> as default LayerPreview does not ask for user authentication since all
>> the layer are configured for free access.
>>  looking at the documentation I see:
>>
>>Remote user The username specified parsed of the request. Only
>> available when request included credentials for authentication. String
>> This probably means that you have to force your client to use
>> authentication on layer request.
>>  Try to setup authentication rules for some layer forcing authorization
>> requests:
>> http://docs.geoserver.org/stable/en/user/security/layer.html
>>  This should add credentials to the request.
>>
>>  Cheers,
>> Carlo
>>
>>
>> 2013/10/21 Rakesh Kumar Sharma 
>>
>>>  Dear sir,
>>>  Waiting for your reply..
>>>
>>> Thanks and Regards
>>> Rakesh
>>>
>>>
>>> Rakesh Kumar Sharma wrote:
>>>
>>> Dear carlo cancellieri,
>>>
>>> yes, I have configured through audit mode only .I am able to get all the
>>> information like StartTime, EndTime,TotalTime,RemoteAddr,RemoteHost,Host
>>> name but only *RemoteUser *details is not coming.
>>> I have already included the following line in  *content.ft*l file
>>>${remoteUser!""}.
>>>
>>> Thanks and Regards
>>> Rakesh
>>>
>>> carlo cancellieri wrote:
>>>
>>> Kumar,
>>>
>>>  How did you configured it?
>>> I suggest to configure it in audit mode, take a look here:
>>>
>>> http://docs.geoserver.org/stable/en/user/extensions/monitoring/audit.html#log-files
>>> Cheers,
>>> Carlo
>>>
>>>  --
>>>  ==
>>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>>> more information.
>>> ==
>>>
>>> Dott. Carlo Cancellieri
>>> @cancellieric
>>> Software Engineer
>>>
>>> GeoSolutions S.A.S.
>>> Via Poggio alle Viti 1187
>>> 55054  Massarosa (LU)
>>> Italy
>>> phone: +39 0584 962313
>>> mobile: +39 3371094494
>>> fax:   +39 0584 1660272
>>>
>>> http://www.geo-solutions.it
>>> http://twitter.com/geosolutions_it
>>>
>>> ---
>>>
>>>
>>>
>>>
>>
>>
>>  --
>>  ==
>> Our support, Your Success! Visit http://opensdi.g

Re: [Geoserver-users] Geo server log

2013-10-22 Thread carlo cancellieri
Rakesh,
 could you attach the complete Request dump (headers, request, etc...)? I'd
like to verify if LayerPreviews attach the user information to the request.
Cheers,
Carlo

PS: keep the List in CC, in the case some other people may want to
participate.


2013/10/22 Rakesh Kumar Sharma 

> **
> Dear Sir,
>  As per your instruction I have set authrntication rule for
> layer.Now its asking for username/password for desired user but still not
> able to record out the *username* of that geoserver user in that log
> file.wating for your reply
>
> Thanks and Regards
> Rakesh
>
>  Kumar,
> as default LayerPreview does not ask for user authentication since all the
> layer are configured for free access.
>  looking at the documentation I see:
>
>Remote user The username specified parsed of the request. Only
> available when request included credentials for authentication. String
> This probably means that you have to force your client to use
> authentication on layer request.
>  Try to setup authentication rules for some layer forcing authorization
> requests:
> http://docs.geoserver.org/stable/en/user/security/layer.html
>  This should add credentials to the request.
>
>  Cheers,
> Carlo
>
>
> 2013/10/21 Rakesh Kumar Sharma 
>
>>  Dear sir,
>>  Waiting for your reply..
>>
>> Thanks and Regards
>> Rakesh
>>
>>
>> Rakesh Kumar Sharma wrote:
>>
>> Dear carlo cancellieri,
>>
>> yes, I have configured through audit mode only .I am able to get all the
>> information like StartTime, EndTime,TotalTime,RemoteAddr,RemoteHost,Host
>> name but only *RemoteUser *details is not coming.
>> I have already included the following line in  *content.ft*l file
>>${remoteUser!""}.
>>
>> Thanks and Regards
>> Rakesh
>>
>> carlo cancellieri wrote:
>>
>> Kumar,
>>
>>  How did you configured it?
>> I suggest to configure it in audit mode, take a look here:
>>
>> http://docs.geoserver.org/stable/en/user/extensions/monitoring/audit.html#log-files
>> Cheers,
>> Carlo
>>
>>  --
>>  ==
>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>> more information.
>> ==
>>
>> Dott. Carlo Cancellieri
>> @cancellieric
>> Software Engineer
>>
>> GeoSolutions S.A.S.
>> Via Poggio alle Viti 1187
>> 55054  Massarosa (LU)
>> Italy
>> phone: +39 0584 962313
>> mobile: +39 3371094494
>> fax:   +39 0584 1660272
>>
>> http://www.geo-solutions.it
>> http://twitter.com/geosolutions_it
>>
>> ---
>>
>>
>>
>>
>
>
>  --
>  ==
> Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
> information.
> ==
>
> Dott. Carlo Cancellieri
> @cancellieric
> Software Engineer
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313 <%2B39%200584%20962313>
> mobile: +39 3371094494 <%2B39%203371094494>
> fax:   +39 0584 1660272
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> ---
>
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [Fwd: Re: Geo server log]

2013-10-21 Thread carlo cancellieri
Rakesh,
 as explained probably the LayerPreview don't append the used user so you
may have to force its usage setting up permissions.
Cheers,
Carlo


2013/10/21 Rakesh Kumar Sharma 

> **
> Dear sir,
>  Waiting for your reply..
>
> Thanks and Regards
> Rakesh
>
>  Original Message   Subject: Re: [Geoserver-users] Geo
> server log  Date: Mon, 21 Oct 2013 14:38:32 +0530  From: Rakesh Kumar
> SharmaTo: carlo
> cancellieri 
>   
> References:
> <525fb2fc.8060...@nrsc.gov.in> <525fb2fc.8060...@nrsc.gov.in>
> 
> <526139a7.3010...@nrsc.gov.in> <526139a7.3010...@nrsc.gov.in>
> 
> <52623aea.90...@nrsc.gov.in> <52623aea.90...@nrsc.gov.in>
> <5264dfd3.7020...@nrsc.gov.in> <5264dfd3.7020...@nrsc.gov.in>
> 
>
> Dear Sir,
>  I am logged in through admin but still the username *admin*
> is also not  showing in that log file deatils.Since admin have all the
> privilege so I think atleast this information should shown in that file.
>
>
> Thanks and Regards
> Rakesh
>
>
>
> carlo cancellieri wrote:
>
> Kumar,
> as default LayerPreview does not ask for user authentication since all the
> layer are configured for free access.
>  looking at the documentation I see:
>
>Remote user The username specified parsed of the request. Only
> available when request included credentials for authentication. String
> This probably means that you have to force your client to use
> authentication on layer request.
>  Try to setup authentication rules for some layer forcing authorization
> requests:
> http://docs.geoserver.org/stable/en/user/security/layer.html
>  This should add credentials to the request.
>
>  Cheers,
> Carlo
>
>
> 2013/10/21 Rakesh Kumar Sharma 
>
>> Dear sir,
>>  Waiting for your reply..
>>
>> Thanks and Regards
>> Rakesh
>>
>>
>> Rakesh Kumar Sharma wrote:
>>
>> Dear carlo cancellieri,
>>
>> yes, I have configured through audit mode only .I am able to get all the
>> information like StartTime, EndTime,TotalTime,RemoteAddr,RemoteHost,Host
>> name but only *RemoteUser *details is not coming.
>> I have already included the following line in  *content.ft*l file
>>${remoteUser!""}.
>>
>> Thanks and Regards
>> Rakesh
>>
>> carlo cancellieri wrote:
>>
>> Kumar,
>>
>>  How did you configured it?
>> I suggest to configure it in audit mode, take a look here:
>>
>> http://docs.geoserver.org/stable/en/user/extensions/monitoring/audit.html#log-files
>> Cheers,
>> Carlo
>>
>>  --
>>  ==
>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>> more information.
>> ==
>>
>> Dott. Carlo Cancellieri
>> @cancellieric
>> Software Engineer
>>
>> GeoSolutions S.A.S.
>> Via Poggio alle Viti 1187
>> 55054  Massarosa (LU)
>> Italy
>> phone: +39 0584 962313 <%2B39%200584%20962313>
>> mobile: +39 3371094494 <%2B39%203371094494>
>> fax:   +39 0584 1660272
>>
>> http://www.geo-solutions.it
>> http://twitter.com/geosolutions_it
>>
>> ---
>>
>>
>>
>>
>
>
>  --
>  ==
> Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
> information.
> ==
>
> Dott. Carlo Cancellieri
> @cancellieric
> Software Engineer
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313 <%2B39%200584%20962313>
> mobile: +39 3371094494 <%2B39%203371094494>
> fax:   +39 0584 1660272
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> ---
>
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geo server log

2013-10-21 Thread carlo cancellieri
Kumar,
as default LayerPreview does not ask for user authentication since all the
layer are configured for free access.
 looking at the documentation I see:

 Remote user The username specified parsed of the request. Only available
when request included credentials for authentication. String
This probably means that you have to force your client to use
authentication on layer request.
Try to setup authentication rules for some layer forcing authorization
requests:
http://docs.geoserver.org/stable/en/user/security/layer.html
This should add credentials to the request.

Cheers,
Carlo


2013/10/21 Rakesh Kumar Sharma 

> **
> Dear sir,
>  Waiting for your reply..
>
> Thanks and Regards
> Rakesh
>
>
> Rakesh Kumar Sharma wrote:
>
> Dear carlo cancellieri,
>
> yes, I have configured through audit mode only .I am able to get all the
> information like StartTime, EndTime,TotalTime,RemoteAddr,RemoteHost,Host
> name but only *RemoteUser *details is not coming.
> I have already included the following line in  *content.ft*l file
>${remoteUser!""}.
>
> Thanks and Regards
> Rakesh
>
> carlo cancellieri wrote:
>
> Kumar,
>
>  How did you configured it?
> I suggest to configure it in audit mode, take a look here:
>
> http://docs.geoserver.org/stable/en/user/extensions/monitoring/audit.html#log-files
> Cheers,
> Carlo
>
>  --
>  ==
> Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
> information.
> ==
>
> Dott. Carlo Cancellieri
> @cancellieric
> Software Engineer
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313
> mobile: +39 3371094494
> fax:   +39 0584 1660272
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> -------
>
>
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geo server log

2013-10-17 Thread carlo cancellieri
Kumar,
 try install and setting up the monitoring plugin:
http://docs.geoserver.org/stable/en/user/extensions/monitoring/reference.html#http
(look at Remote user attribute)
Cheers,
Carlo

2013/10/17 Rakesh Kumar Sharma 

> **
> Dear Support team,
>  we have installed Geo server 2.2 and deployed our
> application.we are able to see the IP address of the host who is using our
> apllication under *(GeoServer 2.2\logs) *but we are not able to see the
> username/hostname.So please provide us solution.
>
> Thanks and Regards
> Rakesh
>
>
> --
> October Webinars: Code for Performance
> Free Intel webinars can help you accelerate application performance.
> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
> from
> the latest Intel processors and coprocessors. See abstracts and register >
> http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] ImageMosaic out of memory issue

2013-10-15 Thread carlo cancellieri
Kevin,
 just looking for options:
Do you have the chance to test this mosaic on geoserver 2.4.0 (Backup your
datadir!!!) ? There are many improvements on the ImageMosaic side.

Carlo

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] ImageMosaic out of memory issue

2013-10-15 Thread carlo cancellieri
Kevin,
 first of all I would suggest to set USE_JAI_IMAGEREAD to true anyhow as
far as I remember the ImageMosaic may work as following:
The search is performed filtering over the DB without opening rasters at
all, then the ImageMosaic may iterate over the selected granules using
the ContentFeatureSource
but if no time is matching in the db the content source should be empty and
a blank image is produced. Could you provide the query you are using and
the relevant piece of getcapabilities?
Cheers,
Carlo


2013/10/14 Weiss, Kevin 

> Hello All,
>
> I've been troubleshooting a Java heap space error with temporal
> ImageMosaic datastores.  We originally followed the tutorials here (
> http://docs.geoserver.org/latest/en/user/tutorials/imagemosaic_timeseries/imagemosaic_timeseries.html)
> to setup a temporally enabled raster data store.  After that we designed a
> system which would download new imagery and update the underlying DB table.
>  The system works as expected until a request for an invalid timestamp is
> made.  It appears that the GeoServer/GeoTools code begins to loop over each
> image in the directory loading it into memory.  When we only had 10-15
> images in the directory this was unnoticeable, however now that our
> collection has grown to 1500+ images it quickly runs us out of heap space.
>
> The code in question appears to be in ContentFeatureSource.java.  In the
> accepts(Query, FeatureVisitor, ProgressListener) method I found the
> following comment:
> "//subclass could not handle, resort to manually walkign through"
> This comment is just above the while loop that iterates over all the
> imagery in the directory which makes me wonder if this is the intended
> behavior.
>
> Has anyone else experienced this issue?  Am I configuring something
> incorrectly?  I realize the simple solution is to not make invalid temporal
> requests, but I don't control the external clients and this seems to be a
> pretty big flaw in my opinion.  No external entity should be able to take
> down my server with a simple request.
>
> Thanks,
>
> Kevin M. Weiss
> Software Engineer
> HARRIS IT Services
>
> --
> October Webinars: Code for Performance
> Free Intel webinars can help you accelerate application performance.
> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
> from
> the latest Intel processors and coprocessors. See abstracts and register >
> http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Internal error occurred PropertyDescriptor is null - did you request a property that does not exist?

2013-10-14 Thread carlo cancellieri
osullivj,

Caused by: java.lang.NullPointerException: PropertyDescriptor is null - did
> you request a property that does not exist?
>

Probably in the style you are referring points to a not existent property
(in the feature). Try to query the geoserver for a describeFeatureType (
http://docs.geoserver.org/stable/en/user/services/wfs/reference.html) and
then double check the used style.

Cheers,
Carlo

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Problems with wms server

2013-10-03 Thread carlo cancellieri
krzysiek,
 it's hard to understand without logs anyhow you could try to setup the
"resource error handling" in the global config panel to "skip misconfigured
layers", to uderstand if it coud depends from some misconfigured source.

Cheers,
Carlo Cancellieri


2013/10/3 krzysiek 

> In Geoserver after added some WMS services
> (
> http://mapa.bialystok.lasy.gov.pl/geoserver/wms?request=getCapabilities&version=1.1.1&service=WMS
> ) Geoserver dont send GetCapabilities in WMS Geoserver.
> WMS. This services sometimes dont respond. When dont respond crash
> GetCapabilities  WMS from Geoserver.
>
> Using proxy didn't help for this services (15s timeout), in this case
> services respond "502", despite GetCapabilities  WMS from Geoserver was
> crash.
>
> Geoserver version 2.3.0
>
> Have you got any idea to resolve this problems?
> Thanks
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/Problems-with-wms-server-tp5081627.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> October Webinars: Code for Performance
> Free Intel webinars can help you accelerate application performance.
> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
> from
> the latest Intel processors and coprocessors. See abstracts and register >
> http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] HTTP ERROR: 404

2013-09-27 Thread carlo cancellieri
harePoint
>> >> > 2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack
>> >> > includes
>> >> > Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/20/13.
>> >> >
>> >> >
>> http://pubads.g.doubleclick.net/gampad/clk?id=58041151&iu=/4140/ostg.clktrk
>> >> > ___
>> >> > Geoserver-users mailing list
>> >> > Geoserver-users@lists.sourceforge.net
>> >> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
>> >
>> >
>> >
>> >
>> ------
>> > October Webinars: Code for Performance
>> > Free Intel webinars can help you accelerate application performance.
>> > Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
>> > from
>> > the latest Intel processors and coprocessors. See abstracts and
>> register >
>> >
>> http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk
>> > ___
>> > Geoserver-users mailing list
>> > Geoserver-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
>> >
>>
>
>
>
> --
> October Webinars: Code for Performance
> Free Intel webinars can help you accelerate application performance.
> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
> from
> the latest Intel processors and coprocessors. See abstracts and register >
> http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Deliver other SRS in WFS-GetCapabilities-Document

2013-09-26 Thread carlo cancellieri
Sebastian,

 I am a newbie to Geoserver and have to ask a question about the
> GetCapabilities-Document of WFS-Services (1.1.0 and above). Is there a
> possibility to deliver a WFS-Service with geoserver in the default-srs and
> in some other srs (an that these other srs are also listet in the
> GetCapabilities document)? I didn´t found an option in the
>
Geoserver-GUI to add more than the native srs and the declared srs. When I
> add a Geoserver to any Desktop-GIS client (ArcMap, QuantumGIS, gvSIG etc.)
> just the delcared srs is possible to choose, but I woul like to have so
> more selectable. I know that Geoserver is able to deliver WFS-Services in
> many other srs - for example when doing a getfeaure-request with another
> srs in the getfeature-URL srsname=epsg: - but I didnt´t found a way to
> enable the other srs within the getcapbalities document.
>

Currently it is not possible to achieve this result in the WFS
getCapabilities. You can only get a full list of available CRS using WMS
and WCS 2.0 getCapabilities.
To customize that list you can use the WMS and WCS settings page (to limit
the shown CRSs) or follow this instructions:
http://docs.geoserver.org/stable/en/user/advanced/crshandling/customcrs.html
to add some custom crs.

If you need other CRS in the WFS you can try contacting the commercial
geoserver support:
http://geoserver.org/display/GEOS/Commercial+Support

Cheers,
Carlo

==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Rasters and time...again

2013-09-25 Thread carlo cancellieri
Rick

Background: I'm looking to publish results of various weather-derived
> models. The outputs are at 15-kilometer resolution, and cover about 800 by
> 1000 kilometers. The models run every day and we have data going back 15
> years. So by the time I retire we're talking 10,000 rasters of that size.
> (Or more; the National Weather Service is contemplating 4K resolution!)
>

The ImageMosaic can handle this kind collection quite easily, I'm currently
working on a mosaic with 300K rasters.


> I had assumed that I'd be using PostGIS rasters for this. It seemed
> improbable that GeoServer would nimbly handle 10,000 files *for each model
> * (we have about 8 of them). First question: Is that correct, or will it
> be happy managing all those files? (Obviously I'd have to use the REST API
> to manage them!) Since the ImageMosaicJDBC plugin doesn't handle timesteps,
> that might not work at all for me.
>

I suggest to use the ImageMosaic plugin.


> Second question: the image mosaic time series 
> tutorial<http://docs.geoserver.org/latest/en/user/tutorials/imagemosaic_timeseries/imagemosaic_timeseries.html>
>  publishes
> a fixed set of TIFs. Just to be clear: as TIFs with new timestamps are
> added to the store, do they automatically become available?
>

Sure, anyhow sometime you may have to refresh the store depending on the
BBox of the granule you have added (This happens since GeoServer caches
readers).


> Thirdly, said tutorial ends with "Create and publish a Layer from mosaic
> indexes". I'm not getting the intent there -- a combination of my thickness
> and the tutorial written by someone for whom English is not their first
> language. Don't get me wrong, it's overall very clear and I'm grateful to
> the author! (I'm sure my competence in *their *native language is
> laughable at best.) But I'm baffled by what this particular step does --
> what
>
are the "footprints of the images", and why would the user want to get
> them? This has to do only with spatial indexing, and nothing to do with the
> time dimension, correct?
>

Not sure about this anyhow this may be related to the bbox of the images
added to the mosaic. You may want to publish a new layer from the obtained
table (created by the imagemosaic plugin).
This can be achieved creating a new DataStore pointing to that table.
This layer can then be used to show the content of the mosaic in terms of
spatial (and temporal) dimensions, users can then perform light queries
(also using an UI like OpenLayers) on this layer to establish which is the
area of interest (useful to build a query and actually use it on the
mosaic).


>
> Finally, there's one possible optimization: Although we need to keep the *
> data* going back for basically ever, and need to be able to do various
> calculations on it and map the results by hand, if push comes to shove, we
> only have to present the most recent
>
visualizations automatically on the Web. So for example, perhaps I can use
> the IMJDBC plugin if I add a timestamp column to the raster table, create a
> "most recent" table, and point IMJDBC at a view that does something like
> "...where raster_table.timestamp = most_recent.timestamp". Does anybody
> know if that will work? The alternative would be to just use a file-based
> raster for the current day, and keep overwriting it.
>

Here you mean the last added image (granule)?
with the imagemosaic plugin, when using dimensions, if you do not specify
anything into the request the default values are used. In the case of the
time dimension it is the latest (more recent).


>
> Thanks, yet again, for your help. And just so you know, GeoServer enables
> a couple of applications that have pretty high political visibility and are
> making me look quite brilliant to my stakeholders* -- so thanks to the
> GeoServer team!
>

You are welcome.

Hope this helps.

Cheers,
Carlo



-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Monitor plugin

2013-07-12 Thread carlo cancellieri
Mika,

Hi,
> Is the Geoserver monitor-plugin source code available? If it's, then
> where from?
>

Take a look here
https://github.com/geoserver/geoserver/tree/master/src/extension/monitor

Carlo Cancellieri

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] GeoJSON from Geoserver

2013-06-28 Thread carlo cancellieri
Kumar,
 is it working in other formats? (f.i.: xml)
If so, could you provide a small subset of the data to make some tests?
Probably also the logs can be useful.

Carlo


2013/6/27 adityakumar529 

> HI ,
>   When I go for the output of a polygon with GeoJSON format in Layer
> Preview
> page I get the following error.
> *java.lang.RuntimeException: org.geotools.data.DataSourceException: An
> exception occurred while parsing WKB data
> org.geotools.data.DataSourceException: An exception occurred while parsing
> WKB data An exception occurred while parsing WKB data Unknown WKB type 255*
>
>
> Any idea how to rectify it?
>
>
> Aditya Kumar
>
>
>
> -
> GIS Developer
> India Urban Space Foundation
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/GeoJSON-from-Geoserver-tp5062469.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> This SF.net email is sponsored by Windows:
>
> Build for Windows Store.
>
> http://p.sf.net/sfu/windows-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Monitoring plugin: auditing and charts

2013-05-23 Thread carlo cancellieri
Hi all,
 I'm using the monitoring plugin (2.2.5) configured in auditing mode (
http://docs.geoserver.org/stable/en/user/extensions/monitoring/audit.html)
and I'd like to understand how the GUI was designed to work in this mode.
Seems that charts are able to show all the incoming requests until a
geoserver reboot.
After a reboot, when I select a period (for example 1 month) what I expect
is that the DAO can read all the serialized logs providing me an overview
of the past data, but this seems won't work (for serialized data), is it
correct?
Can someone clarify how the data shown into the GUI (and probably the REST
interface) is loaded when monitoring is configured in auditing mode? (and
possibly in other configurations)
Cheers,
Carlo
-- 
==
GeoServer training in Milan, 6th & 7th June 2013! Visit
http://geoserver.geo-solutions.it for more information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] H2 datastore configuration

2013-05-03 Thread carlo cancellieri
Ok i reproduced it locally and found the problem, it was due to an
incompatibility within h2 versions:

https://groups.google.com/forum/?fromgroups=#!topic/h2-database/FhKHtE0R7BY

I have to use an updated version of h2 (with 1.3.171 it works).
Thank you,
Carlo


2013/5/2 carlo cancellieri 

> Ciao Justin,
>  Yes, I have read that mail but the problem seems that I can't get it
> working at all (also removing the host parameter).
> This is why I'm asking if you ever get it working on an existing database
> (mine is about 1 Gb).
> Which is the correct string I have to use? may I have to exclude the
> jdbc:h2 part? do you have a working datastore configuration?
> NOTES: I'm working on GeoServer 2.2.x.
>
> Thank you for any details.
> Cheers,
> Carlo
>
>
> 2013/5/2 Justin Deoliveira 
>
>> Hey Carlo,
>>
>> Yeah, this one was reported by another user about a week ago. Basically
>> if the host parameter is set the connection will attempt a tcp connection
>> rather than an embedded one. It is an issue with the
>> H2JDBCDataStoreFactory. We should probably had an explicit flag to it.
>>
>> Anyways, workaround is to simply clear out the host parameter.
>>
>> -Justin
>>
>>
>>
>>
>>  On Thu, May 2, 2013 at 9:57 AM, carlo cancellieri <
>> carlo.cancelli...@geo-solutions.it> wrote:
>>
>>>  Hi,
>>>  I'm having some problem configuring the an H2 datastore.
>>> I've translated a working postgis table into an h2 table using geotools
>>> and I'm able to query that table via h2 web interface.
>>> Now, I'd like to configure a store pointing to that DB but I'm not able
>>> to get it working.
>>> I tried to setup the datastore as database embedded:
>>> database = *jdbc:h2//data/geoData/tech-cdr/TEMP/sdw_datastore*
>>> *host =*
>>> *port =*
>>>
>>> with no success:
>>> I get a popup saying Could not acquire data access 'sdw_h2' but no
>>> error is given into logs using VERBOSE_LOGGING.properties.
>>>
>>> I'v also tried to point my h2 database via tcp:
>>> 1. started an h2 instance on the same VM using the port 9902 and
>>> configured with the below DB using the web gui:
>>> jdbc:h2//data/geoData/tech-cdr/TEMP/sdw_datastore
>>> 2. configured a store as following
>>> database = *jdbc:h2//data/geoData/tech-cdr/TEMP/sdw_datastore*
>>> *host = localhost*
>>> *port = 9902*
>>>
>>> I've also tried setting database = *
>>> /data/geoData/tech-cdr/TEMP/sdw_datastore* with no success.
>>>
>>> It's not so clear how to proceed to debug this and which is the best way
>>> to configure it. Have you ever configured an existing DB as H2 store? if
>>> so, in which way?
>>> *
>>> *
>>> Thank you,
>>> Carlo
>>>
>>> --
>>> ==
>>> GeoServer training in Milan, 6th & 7th June 2013! Visit
>>> http://geoserver.geo-solutions.it for more information.
>>> ==
>>>
>>> Dott. Carlo Cancellieri
>>> @cancellieric
>>> Software Engineer
>>>
>>> GeoSolutions S.A.S.
>>> Via Poggio alle Viti 1187
>>> 55054  Massarosa (LU)
>>> Italy
>>> phone: +39 0584 962313
>>> mobile: +39 3371094494
>>> fax:   +39 0584 1660272
>>>
>>> http://www.geo-solutions.it
>>> http://twitter.com/geosolutions_it
>>>
>>> ---
>>>
>>>
>>> --
>>> Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
>>> Get 100% visibility into your production application - at no cost.
>>> Code-level diagnostics for performance bottlenecks with <2% overhead
>>> Download for free and get started troubleshooting in minutes.
>>> http://p.sf.net/sfu/appdyn_d2d_ap1
>>> ___
>>> Geoserver-users mailing list
>>> Geoserver-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>>
>>>
>>
>>
>> --
>> Justin Deoliveira
>> OpenGeo - http://opengeo.org
>> Enterprise support for open source geospatial.
>>
>
>
>
> --
> ==
> GeoServer training in Milan, 6th & 7th June 2013! Visit
> http://geoserver.geo-solutions.it for more information.
> ==
>
> Dott. Carlo Cancellieri
> @cancelli

Re: [Geoserver-users] H2 datastore configuration

2013-05-02 Thread carlo cancellieri
Ciao Justin,
 Yes, I have read that mail but the problem seems that I can't get it
working at all (also removing the host parameter).
This is why I'm asking if you ever get it working on an existing database
(mine is about 1 Gb).
Which is the correct string I have to use? may I have to exclude the
jdbc:h2 part? do you have a working datastore configuration?
NOTES: I'm working on GeoServer 2.2.x.

Thank you for any details.
Cheers,
Carlo


2013/5/2 Justin Deoliveira 

> Hey Carlo,
>
> Yeah, this one was reported by another user about a week ago. Basically if
> the host parameter is set the connection will attempt a tcp connection
> rather than an embedded one. It is an issue with the
> H2JDBCDataStoreFactory. We should probably had an explicit flag to it.
>
> Anyways, workaround is to simply clear out the host parameter.
>
> -Justin
>
>
>
>
>  On Thu, May 2, 2013 at 9:57 AM, carlo cancellieri <
> carlo.cancelli...@geo-solutions.it> wrote:
>
>>  Hi,
>>  I'm having some problem configuring the an H2 datastore.
>> I've translated a working postgis table into an h2 table using geotools
>> and I'm able to query that table via h2 web interface.
>> Now, I'd like to configure a store pointing to that DB but I'm not able
>> to get it working.
>> I tried to setup the datastore as database embedded:
>> database = *jdbc:h2//data/geoData/tech-cdr/TEMP/sdw_datastore*
>> *host =*
>> *port =*
>>
>> with no success:
>> I get a popup saying Could not acquire data access 'sdw_h2' but no error
>> is given into logs using VERBOSE_LOGGING.properties.
>>
>> I'v also tried to point my h2 database via tcp:
>> 1. started an h2 instance on the same VM using the port 9902 and
>> configured with the below DB using the web gui:
>> jdbc:h2//data/geoData/tech-cdr/TEMP/sdw_datastore
>> 2. configured a store as following
>> database = *jdbc:h2//data/geoData/tech-cdr/TEMP/sdw_datastore*
>> *host = localhost*
>> *port = 9902*
>>
>> I've also tried setting database = *
>> /data/geoData/tech-cdr/TEMP/sdw_datastore* with no success.
>>
>> It's not so clear how to proceed to debug this and which is the best way
>> to configure it. Have you ever configured an existing DB as H2 store? if
>> so, in which way?
>> *
>> *
>> Thank you,
>> Carlo
>>
>> --
>> ==
>> GeoServer training in Milan, 6th & 7th June 2013! Visit
>> http://geoserver.geo-solutions.it for more information.
>> ==
>>
>> Dott. Carlo Cancellieri
>> @cancellieric
>> Software Engineer
>>
>> GeoSolutions S.A.S.
>> Via Poggio alle Viti 1187
>> 55054  Massarosa (LU)
>> Italy
>> phone: +39 0584 962313
>> mobile: +39 3371094494
>> fax:   +39 0584 1660272
>>
>> http://www.geo-solutions.it
>> http://twitter.com/geosolutions_it
>>
>> ---
>>
>>
>> --
>> Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
>> Get 100% visibility into your production application - at no cost.
>> Code-level diagnostics for performance bottlenecks with <2% overhead
>> Download for free and get started troubleshooting in minutes.
>> http://p.sf.net/sfu/appdyn_d2d_ap1
>> ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>>
>
>
> --
> Justin Deoliveira
> OpenGeo - http://opengeo.org
> Enterprise support for open source geospatial.
>



-- 
==
GeoServer training in Milan, 6th & 7th June 2013! Visit
http://geoserver.geo-solutions.it for more information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] GetCapabilities 1.1.1 error

2013-04-11 Thread carlo cancellieri
Dmitriy,
 I've just tested it and it has no problem, so your error may depends on
some data configuration:
try changing 'Resource Error Handling' from the '*global*' settings page.
Cheers,
Carlo


2013/4/11 Dmitriy Tyugaev 

> Hi list,
>
> I get an error when a request getCapabilities document version=1.1.1 from
> the geoserver 2.3.0.
>
>
> http://localhost:8090/geoserver/tiger/wms?SERVICE=WMS&REQUEST=GetCapabilities&TILED=true&VERSION=1.1.1-
>  ERROR
>
> 11 Apr 16:42:44 ERROR [geoserver.ows] -
> org.geoserver.platform.ServiceException:
> javax.xml.transform.TransformerException: java.lang.NullPointerException:
> at index 4
>
> Request with the parameter version=1.3.0 works fine.
>
> http://localhost:8090/geoserver/tiger/wms?SERVICE=WMS&REQUEST=GetCapabilities&TILED=true&VERSION=1.3.0-
>  OK
>
> Also, if I request without workspace in url, all works fine.
>
> http://localhost:8090/geoserver/wms?SERVICE=WMS&REQUEST=GetCapabilities&TILED=true&VERSION=1.1.1-
>  OK
>
> This is a bug?
>
> --
> Sincerely, Dmitriy
>
>
> --
> Precog is a next-generation analytics platform capable of advanced
> analytics on semi-structured data. The platform includes APIs for building
> apps and a phenomenal toolset for data science. Developers can use
> our toolset for easy data analysis & visualization. Get a free account!
> http://www2.precog.com/precogplatform/slashdotnewsletter
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
GeoServer training in Milan, 6th & 7th June 2013! Visit
http://geoserver.geo-solutions.it for more information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] log4j issues - how to log?

2013-03-27 Thread carlo cancellieri
Jonatan,

Anyway, two issues:
>
> 1) (bug?) - Despite what
> http://docs.geoserver.org/stable/en/user/advanced/logging.html says,
> placing a new .properties file into the /logs/ directory doesn't seem to be
> detected. Anyone else get this? (note: Using Jetty 8)
> (work around - just modify one of the Geoserver ones).
>

never tried

>
>
> 2) My bigger issue - I can finally get logging happening to a second file,
> but the logging is identical to that sent to the first file. I only want
> Mapfish Print stuff going to the second file. But MapFish Print stuff
> doesn't seem to be getting logged at all anywhere.
>

After a quick look to your file I think you only have to change this line:

OLD ->  log4j.rootLogger=WARN, geoserverlogfile, stdout, mapfishlogfile

NEW ->  log4j.rootLogger=WARN, geoserverlogfile, stdout

This is a working example I'm using for our kibana filter:

## KIBANA
log4j.appender.kibanappender=org.apache.log4j.RollingFileAppender
log4j.appender.kibanappender.MaxBackupIndex=7
log4j.appender.kibanappender.layout=org.apache.log4j.PatternLayout
log4j.appender.kibanappender.layout.ConversionPattern=%d %p [%c{2}] %m%n
log4j.logger.org.fao.data.map.geoserver.filter.kibana=INFO,kibanappender

log4j.appender.kibanappender.File=${GEOSERVER_LOG_LOCATION}_kibana


cheers,
Carlo


>
> my current file (based on GeoServer_developer_logging.properties) is
> below. Suggestions welcome.
> Thanks,
> Jonathan
>
>
>
> log4j.rootLogger=WARN, geoserverlogfile, stdout, mapfishlogfile
>
> ###
> #Standard output (console)
> log4j.appender.stdout=org.apache.log4j.ConsoleAppender
> log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
> log4j.appender.stdout.layout.ConversionPattern=%d{dd MMM HH:mm:ss} %p [%c]
> - %m%n
>
> ###
> #Geoserver log File
> log4j.appender.geoserverlogfile=org.apache.log4j.RollingFileAppender
> # Keep three backup files.
> log4j.appender.geoserverlogfile.MaxBackupIndex=3
> # Pattern to output: date priority [category] - message
> log4j.appender.geoserverlogfile.layout=org.apache.log4j.PatternLayout
> log4j.appender.geoserverlogfile.layout.ConversionPattern=%d %p [%c] - %m%n
>
> ###
>
> log4j.category.log4j=FATAL
>
> log4j.category.org.geotools=WARN
> log4j.category.org.geotools.factory=WARN
>
> log4j.category.org.geoserver=TRACE
> log4j.category.org.vfny.geoserver=TRACE
>
> log4j.category.org.springframework=WARN
>
> ###
> #MapFish log File
> log4j.appender.mapfishlogfile=org.apache.log4j.RollingFileAppender
>
> log4j.appender.mapfishlogfile.File=D:/GeoServer_Config_Dir/logs/mapfish-print.log
> # Keep three backup files.
> log4j.appender.mapfishlogfile.MaxBackupIndex=3
> # Pattern to output: date priority [category] - message
> log4j.appender.mapfishlogfile.layout=org.apache.log4j.PatternLayout
> log4j.appender.mapfishlogfile.layout.ConversionPattern=%d{ISO8601} [%t]
> %-5p %30.30c - %m%n
> ###
>
> log4j.logger.org.mapfish=DEBUG, mapfishlogfile
> log4j.logger.org.pvalsecc=DEBUG, mapfishlogfile
>
>
> This transmission is intended for the named addressee(s) only and may
> contain sensitive or protectively marked material up to RESTRICTED and
> should be handled accordingly. Unless you are the named addressee (or
> authorised to receive it for the addressee) you may not copy or use it, or
> disclose it to anyone else. If you have received this transmission in error
> please notify the sender immediately. All email traffic sent to or from us,
> including without limitation all GCSX traffic, may be subject to recording
> and/or monitoring in accordance with relevant legislation.
>
>
> --
> Own the Future-Intel® Level Up Game Demo Contest 2013
> Rise to greatness in Intel's independent game demo contest.
> Compete for recognition, cash, and the chance to get your game
> on Steam. $5K grand prize plus 10 genre and skill prizes.
> Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d
> _______
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---

Re: [Geoserver-users] getCapabilities problem

2013-02-14 Thread carlo cancellieri
Nunzio,
 which version are you using?
Try running getCapabilities after setting SKIP_MISCONFIGURED_LAYERS in
global settings of geoserver *(*
http://docs.geoserver.org/latest/en/user/webadmin/server/globalsettings.html#resource-error-handling
)
If it works in that case you have to check disappearing style or layer
configuration.

Cheers,
Carlo



2013/2/14 Nunzio Testa 

> Dear all, 
>
> i tried to use geoserver getCapabilities functionality.
>
> I make the following request  http:/ server>/geoserver/ows?service=wms&version=1.1.1&request=GetCapabilities<http://geosuite.team.nextant.it/geoserver/ows?service=wms&version=1.1.1&request=GetCapabilities>.
> The processing starts but the resulting XML terminate with the following
> error
>
> 
>
>   maxx="1475600.0" maxy="5254530.0"/>
>
>   
>
>Free Next-Gen Firewall Hardware Offer
> Buy your Sophos next-gen firewall before the end March 2013
> and get the hardware for free! Learn more.
> http://p.sf.net/sfu/sophos-d2d-feb
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] 2.2.x User documentation not found

2013-02-14 Thread carlo cancellieri
Hi all,
 this is to advise that the link for the 2.2.x branch on the documentation
page (http://docs.geoserver.org/) is not working:
http://docs.geoserver.org/2.2.x/en/user/

Cheers,
Carlo

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] deactivate the layer preview

2013-02-13 Thread carlo cancellieri
Tim,
 you have to setup some more restrictive permissions into your GeoServer.
Take a look here
http://docs.geoserver.org/stable/en/user/security/layer.html to understand
how.
Cheers,
Carlo

2013/2/4 Tim Balschmiter 

> Hi List,
> i can open my geoserver with: www.domain.com:8080/geoserver/. That works
> fine, but i don´t want to have a layer-preview when i am not logt in. So i
> am searching for an option to deactivate the layer preview on the login
> screen.
> I hope you can help me.
> thanks a lot.
> Tim
>
>
>
>
> --
> Free Next-Gen Firewall Hardware Offer
> Buy your Sophos next-gen firewall before the end March 2013
> and get the hardware for free! Learn more.
> http://p.sf.net/sfu/sophos-d2d-feb
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] problem adding layer

2013-02-11 Thread carlo cancellieri
Yehiyam
 could you kindly attach the geoserver log (containing store creation and
layer visualization)?
Cheers,
Carlo


2013/2/10 Livneh Yehiyam 

> hi
> I've setup geoserver 2.2.4 on windows 7 64 bit machine. Everything works
> fine with the builtin data.
> However, if I try to add a new layer, following the tutorial, the new
> layer doesn't appear on the layers list.
> I've created a workspace, data store for my data. after the store is
> created, I try to create a new layer. In the new layer page, I set the
> projection and bbox and click save. There are no errors. When I go to the
> layers page, my new layer is missing.
> I've tried that for both shapefiles and geotiff rasters.
> The same procedure worked on a 32 bit machine.
>
> Thanks
> Yehiyam Livneh
>
> Sent by emoze push mail
> 
> This message (including any attachments) issued by RAFAEL- ADVANCED
> DEFENSE SYSTEMS LTD. (hereinafter "RAFAEL") contains confidential
> information intended for a specific individual and purpose, may constitute
> information that is privileged or confidential or otherwise protected from
> disclosure. If you are not the intended recipient, you should contact us
> immediately and thereafter delete this message from your system. You are
> hereby notified that any disclosure, copying, dissemination, distribution
> or forwarding of this message, or the taking of any action based on it, is
> strictly prohibited. If you have received this e-mail in error, please
> notify us immediately by e-mail mailto:law...@rafael.co.il and completely
> delete or destroy any and all electronic or other copies of the original
> message and any attachments thereof.
>
>
> --
> Free Next-Gen Firewall Hardware Offer
> Buy your Sophos next-gen firewall before the end March 2013
> and get the hardware for free! Learn more.
> http://p.sf.net/sfu/sophos-d2d-feb
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Static GetLegendGraphic

2013-02-11 Thread carlo cancellieri
Björn,
 no, the legend is dynamically generated from the layer associated style.
Cheers,
Carlo

2013/2/11 Björn Höfling 

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Is it possible with GeoServer to have a static LegendGraphic (an
> external .png/.jpg-File)? I only found that GeoServer renders its own
> legend with the SLD styles.
>
> Thanks,
>
> Björn
>
> - --
> Dipl.-Inf. Björn Höfling
> Software Developer (GIS, Java)
> http://www.bjoernhoefling.de/
> USt-IdNr: DE275885245
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.11 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://www.enigmail.net/
>
> iEYEARECAAYFAlEYqycACgkQvyhstlk+X/1gxACfYAEk7R8McEQL0ER9rn23tXPW
> ppYAmQFSpKpitQS3fNvRPDbGcjW4vy7A
> =tcj8
> -END PGP SIGNATURE-
>
>
> --
> Free Next-Gen Firewall Hardware Offer
> Buy your Sophos next-gen firewall before the end March 2013
> and get the hardware for free! Learn more.
> http://p.sf.net/sfu/sophos-d2d-feb
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] KML and lookat longitude

2013-01-29 Thread carlo cancellieri
Hi all,
 I've a problem with the lookat parameter of the KML output.
With an EPSG:4326 layer using BBox -180,-90,180,90:


   
  
  
 GAEZ:tiff
 1
 1
 
180.0
0.0
1.5768778343115222E7
1.2742E7
0.0
0.0
clampToGround
 
 

onStop
1
 
  
  
 180.0
 0.0
 1.5768778343115222E7
 1.2742E7
 0.0
 0.0
 clampToGround
  
   


As you can see the longitude is 180 (shouldn't be 0???).
The problem is still there not using the kml reflector (getMap).
Is there someone with experience on this problem?
Cheers,
Carlo

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
mobile: +39 3371094494
fax:   +39 0584 1660272

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

---
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] trying to create a layer for a coveragestore using the rest API

2012-12-13 Thread Carlo Cancellieri

Katie, note that using 'configure=all' will automatically publish all the layer 
matching resources into the store.Not sure about the error code 500, probably 
having geoserver logs may help understanding.Cheers,Carlo
Date: Thu, 13 Dec 2012 08:43:53 -0500
From: katieessa...@gmail.com
To: geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] trying to create a layer for a coveragestore using 
the rest API

Hello all, I have created a coveragestore in geoserver using the rest API like 
this: 

curl -u admin:geoserver -v -XPOST -H
"Content-type: text/xml" –T C:\Users\katie\Desktop\pyramidstore.xml 
http://localhost:8080/geoserver/rest/workspaces/walker/coveragestores?configure=all
 My xml was this: 
  walkerpyramid 
 
   walkerpyramid
test  
   ImagePyramid  
   true  
 
  walker
 
 
 <__default>false   
 file:F:\gis\geotiffs\pyramid3
 
Next I wanted to create a layer for the coverage store, so I tried this: 
curl -v -u admin:geoserver -XPOST -H "Content-type: text/xml" -d 
"walkerpyramid" 
http://localhost:8080/geoserver/rest/workspaces/walker/coveragestores/walkerpyramid/coverages
 However, this gave me the following error:
 * About to connect() to localhost port 8080 (#0)
*   Trying 127.0.0.1... connected
* Server auth using Basic with user 'admin'

> POST /geoserver/rest/workspaces/walker/coveragestores/walkerpyramid/coverages
HTTP/1.1
> Authorization: Basic YWRtaW46Z2Vvc2VydmVy
> User-Agent: curl/7.23.1 (x86_64-pc-win32) libcurl/7.23.1
> Host: localhost:8080

> Accept: */*
> Content-type: text/xml
> Content-Length: 70
>
* upload completely sent off: 70 out of 70 bytes
< HTTP/1.1 500 Internal Server Error
< Transfer-Encoding: chunked
< Server: Jetty(6.1.8)

<
coverages : coverages* Connection #0 to host localhost left intact
* Closing connection #0  
Can anyone please tell me what I am doing wrong? How can I create a layer for 
this store using geoserver rest API?
 Thanks!Katie 
 

 

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
  --
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] report from Geoserver

2012-12-11 Thread Carlo Cancellieri

Garey,
 I believe the best option is using REST specifying text output format:
http://docs.geoserver.org/stable/en/user/restconfig/rest-config-examples/rest-config-examples-curl.html
For a complete layer list try also the WMS getCapabillities (this is only in 
xml).

Cheers,
Carlo Cancellieri - GeoSolutions SAS

> Date: Tue, 11 Dec 2012 11:58:24 -0800
> From: gmi...@library.berkeley.edu
> To: geoserver-users@lists.sourceforge.net
> Subject: [Geoserver-users] report from Geoserver
> 
>  I need to produce a report from Geoserver showing workspaces, 
> stores and layer names. A plain text file would be fine. I can't seem
> to find a simple way to do this. Does anyone know of a way?
> 
> -- 
> Garey Mills
> Library Systems Office
> UC Berkeley
> 
> 
> --
> LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
> Remotely access PCs and mobile devices and provide instant support
> Improve your efficiency, and focus on delivering more value-add services
> Discover what IT Professionals Know. Rescue delivers
> http://p.sf.net/sfu/logmein_12329d2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
  --
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] ENABLE_JSONP

2012-12-06 Thread Carlo Cancellieri

Hi Neil,
 the backport of the jsonp support is still pending for PSC approval (on the 
Dev list).
Currently it is only supported by the 2.3.x branch.
Cheers,
Carlo Cancellieri - GeoSolutions SAS

From: neil_jake...@hotmail.com
To: geoserver-users@lists.sourceforge.net
Date: Thu, 6 Dec 2012 19:52:54 +
Subject: [Geoserver-users] ENABLE_JSONP

Hi, I am running Geoserver 2.2 on Tomcat 6 Debian.I would like to make 
GetFeatureInfo request in JSONP. I have added : 
ENABLE_JSONP
true …to my web.xml where I set up 
the Geowebcache data dir, and restarted tomcat, but the requests still respond 
that “info_format=text/javascript” isn’t valid. Does anyone know if this is 
available in 2.2 and how to get it working? Thanks Neil
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
  --
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer 2.2)

2012-12-01 Thread Carlo Cancellieri

Arek,
 mmm ... testing it and I'm getting an ftl exception...
Looking at the code seams that this functionality is not implemented.
Try asking on the Dev list.
I don't know if it is a documentation mistake or a regression.

Cheers,
Carlo Cancellieri - GeoSolutions SAS

From: ccancelli...@hotmail.com
To: dumon...@gmail.com
Date: Sat, 1 Dec 2012 10:53:16 +
CC: geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer 
2.2)





Arek,
 you are right i missed the get part, I never used it.

So:
curl -u admin:geoserver -XGET
   
http://localhost:8080/geoserver/rest/workspaces/{WORKSPACENAME}/coveragestores/{coverageStoreName}/file.geotiff

The result should be a zip archive with the target coverage.

Cheers,
Carlo Cancellieri - GeoSolutions SAS

From: dumon...@gmail.com
Date: Sat, 1 Dec 2012 10:55:19 +0100
Subject: Re: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer 
2.2)
To: ccancelli...@hotmail.com
CC: geoserver-users@lists.sourceforge.net

Carlo,
Thanks for info. Maybe it is like you said, but I wonder on part 'Get the 
underlying files for the coverage store as a zip file with mime 
typeapplication/zip.' in 
http://docs.geoserver.org/stable/en/user/restconfig/rest-config-api.html#coverage-stores
 -  I thought this means that I can download files (in ZIP archive) from file 
based coverage store (files which are store data - like GeoTIFFs). What do you 
think about this? How you understand this part of documentation?

The problem is that I need to get GeoTIFF in original format (not as png/jpeg 
or something served by WMS) - is there any way to achieve that (other than 
downloading via REST Api)?


Regards,

Arek

2012/11/30 Carlo Cancellieri 







Arek,

Using the path you specified you are querying the geoserver catalog. This means 
that you are asking for information on how your data is configured and stored 
into geoserver.


You can download this information in different (ascii) formats:
http://docs.geoserver.org/stable/en/user/restconfig/rest-config-api.html#formats-and-representations



As far as I know there's no a rest api service to serve the file, probably 
because this is not so general purpose (many datastores are not file based).

If you want to download the data you have to use the getMap


http://docs.geoserver.org/stable/en/user/services/wms/reference.html#getmap
specifying the desired output format:


http://docs.geoserver.org/stable/en/user/services/wms/outputformats.html#wms-output-formats



Cheers,
Carlo
From: dumon...@gmail.com
Date: Fri, 30 Nov 2012 12:34:57 +0100
To: geoserver-users@lists.sourceforge.net


Subject: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer  
2.2)

Hi, 

I am using GeoServer (Version 2.2 Git Revision 
f5b5c35076b52d02eb9cca3fa3232bc17b5f6d80 Build Date 19-Sep-2012 18:33 GeoTools 
Version 8.2 (rev 704570474295e339c08d1ca140d884f23a8a03a3)) and I've got 
workspace with name myTestWorkspace and store with name test and type GeoTIFF. 
This store has URL connection parameters as follows: file:coverages/test.tif. I 
would like to download *.tif file by GeoServer REST API.





I found in documentation 
(http://docs.geoserver.org/stable/en/user/restconfig/rest-config-api.html#coverage-stores)
 that it is possible using URL





/workspaces//coveragestores//file[.]





So in my case it will be 
/workspaces/myTestWorkspace/coveragestores/test/file.geotiff(am I right?). But 
when I paste this URL I've got HTTP status 404. In documentation above is 
information that in this case (getting 404) are two options: 





Exceptions:
GET for a data store that does not exist -> 404 




GET for a data store that is not file based -> 404
My data store exists (if for example I 
paste/workspaces/myTestWorkspace/coveragestores/test.xml then I get information 
about store: name, type etc.).




But is my data store file based? I thought that if data store has type GeoTIFF, 
then he is file based - am I right?





Any ideas why I cannot download TIFF file?Thanks, Arek







This are information about my configuration:





Geoserver: 
Build Information





Version 2.2




Git Revision f5b5c35076b52d02eb9cca3fa3232bc17b5f6d80

Build Date 19-Sep-2012 18:33





GeoTools Version 8.2 (rev 704570474295e339c08d1ca140d884f23a8a03a3)






JAVA: Oracle Corporation: 1.7.0_07 (Java HotSpot(TM) 64-Bit Server VM)












Native JAI  false   





Native JAI ImageIO  false


OS: Linux centos64 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 
x86_64 x86_64 x86_64 GNU/Linux





Web container: Apache Tomcat/7.0.30








--
Keep yourself connected to Go Parallel: 
TUNE You got it built. Now make it sing. Tune shows you how.
http://goparallel.sourceforge.net

Re: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer 2.2)

2012-12-01 Thread Carlo Cancellieri

Arek,
 you are right i missed the get part, I never used it.

So:
curl -u admin:geoserver -XGET
   
http://localhost:8080/geoserver/rest/workspaces/{WORKSPACENAME}/coveragestores/{coverageStoreName}/file.geotiff

The result should be a zip archive with the target coverage.

Cheers,
Carlo Cancellieri - GeoSolutions SAS

From: dumon...@gmail.com
Date: Sat, 1 Dec 2012 10:55:19 +0100
Subject: Re: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer 
2.2)
To: ccancelli...@hotmail.com
CC: geoserver-users@lists.sourceforge.net

Carlo,
Thanks for info. Maybe it is like you said, but I wonder on part 'Get the 
underlying files for the coverage store as a zip file with mime 
typeapplication/zip.' in 
http://docs.geoserver.org/stable/en/user/restconfig/rest-config-api.html#coverage-stores
 -  I thought this means that I can download files (in ZIP archive) from file 
based coverage store (files which are store data - like GeoTIFFs). What do you 
think about this? How you understand this part of documentation?

The problem is that I need to get GeoTIFF in original format (not as png/jpeg 
or something served by WMS) - is there any way to achieve that (other than 
downloading via REST Api)?


Regards,

Arek

2012/11/30 Carlo Cancellieri 







Arek,

Using the path you specified you are querying the geoserver catalog. This means 
that you are asking for information on how your data is configured and stored 
into geoserver.


You can download this information in different (ascii) formats:
http://docs.geoserver.org/stable/en/user/restconfig/rest-config-api.html#formats-and-representations



As far as I know there's no a rest api service to serve the file, probably 
because this is not so general purpose (many datastores are not file based).

If you want to download the data you have to use the getMap


http://docs.geoserver.org/stable/en/user/services/wms/reference.html#getmap
specifying the desired output format:


http://docs.geoserver.org/stable/en/user/services/wms/outputformats.html#wms-output-formats



Cheers,
Carlo
From: dumon...@gmail.com
Date: Fri, 30 Nov 2012 12:34:57 +0100
To: geoserver-users@lists.sourceforge.net


Subject: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer  
2.2)

Hi, 

I am using GeoServer (Version 2.2 Git Revision 
f5b5c35076b52d02eb9cca3fa3232bc17b5f6d80 Build Date 19-Sep-2012 18:33 GeoTools 
Version 8.2 (rev 704570474295e339c08d1ca140d884f23a8a03a3)) and I've got 
workspace with name myTestWorkspace and store with name test and type GeoTIFF. 
This store has URL connection parameters as follows: file:coverages/test.tif. I 
would like to download *.tif file by GeoServer REST API.





I found in documentation 
(http://docs.geoserver.org/stable/en/user/restconfig/rest-config-api.html#coverage-stores)
 that it is possible using URL





/workspaces//coveragestores//file[.]





So in my case it will be 
/workspaces/myTestWorkspace/coveragestores/test/file.geotiff(am I right?). But 
when I paste this URL I've got HTTP status 404. In documentation above is 
information that in this case (getting 404) are two options: 





Exceptions:
GET for a data store that does not exist -> 404 




GET for a data store that is not file based -> 404
My data store exists (if for example I 
paste/workspaces/myTestWorkspace/coveragestores/test.xml then I get information 
about store: name, type etc.).




But is my data store file based? I thought that if data store has type GeoTIFF, 
then he is file based - am I right?





Any ideas why I cannot download TIFF file?Thanks, Arek







This are information about my configuration:





Geoserver: 
Build Information





Version 2.2




Git Revision f5b5c35076b52d02eb9cca3fa3232bc17b5f6d80

Build Date 19-Sep-2012 18:33





GeoTools Version 8.2 (rev 704570474295e339c08d1ca140d884f23a8a03a3)






JAVA: Oracle Corporation: 1.7.0_07 (Java HotSpot(TM) 64-Bit Server VM)












Native JAI  false   





Native JAI ImageIO  false


OS: Linux centos64 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 
x86_64 x86_64 x86_64 GNU/Linux





Web container: Apache Tomcat/7.0.30








--
Keep yourself connected to Go Parallel: 
TUNE You got it built. Now make it sing. Tune shows you how.
http://goparallel.sourceforge.net
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
  


-- 
Pozdrawiam.
A. Woźniak.

  --
Keep yourself connected to Go Parallel: 
INSIGHTS What's next for parallel hardware, programming and related areas?
Interviews and blogs by thought

Re: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer 2.2)

2012-11-30 Thread Carlo Cancellieri


Arek,

Using the path you specified you are querying the geoserver catalog. This means 
that you are asking for information on how your data is configured and stored 
into geoserver.
You can download this information in different (ascii) formats:
http://docs.geoserver.org/stable/en/user/restconfig/rest-config-api.html#formats-and-representations

As far as I know there's no a rest api service to serve the file, probably 
because this is not so general purpose (many datastores are not file based).

If you want to download the data you have to use the getMap
http://docs.geoserver.org/stable/en/user/services/wms/reference.html#getmap
specifying the desired output format:
http://docs.geoserver.org/stable/en/user/services/wms/outputformats.html#wms-output-formats

Cheers,
Carlo
From: dumon...@gmail.com
Date: Fri, 30 Nov 2012 12:34:57 +0100
To: geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] Downloading GeoTIFF file via RESTApi (GeoServer  
2.2)

Hi, I am using GeoServer (Version 2.2 Git Revision 
f5b5c35076b52d02eb9cca3fa3232bc17b5f6d80 Build Date 19-Sep-2012 18:33 GeoTools 
Version 8.2 (rev 704570474295e339c08d1ca140d884f23a8a03a3)) and I've got 
workspace with name myTestWorkspace and store with name test and type GeoTIFF. 
This store has URL connection parameters as follows: file:coverages/test.tif. I 
would like to download *.tif file by GeoServer REST API.



I found in documentation 
(http://docs.geoserver.org/stable/en/user/restconfig/rest-config-api.html#coverage-stores)
 that it is possible using URL



/workspaces//coveragestores//file[.]



So in my case it will be 
/workspaces/myTestWorkspace/coveragestores/test/file.geotiff(am I right?). But 
when I paste this URL I've got HTTP status 404. In documentation above is 
information that in this case (getting 404) are two options: 



Exceptions:
GET for a data store that does not exist -> 404 


GET for a data store that is not file based -> 404
My data store exists (if for example I 
paste/workspaces/myTestWorkspace/coveragestores/test.xml then I get information 
about store: name, type etc.).


But is my data store file based? I thought that if data store has type GeoTIFF, 
then he is file based - am I right?



Any ideas why I cannot download TIFF file?Thanks, Arek





This are information about my configuration:



Geoserver: 
Build Information



Version 2.2


Git Revision f5b5c35076b52d02eb9cca3fa3232bc17b5f6d80

Build Date 19-Sep-2012 18:33



GeoTools Version 8.2 (rev 704570474295e339c08d1ca140d884f23a8a03a3)




JAVA: Oracle Corporation: 1.7.0_07 (Java HotSpot(TM) 64-Bit Server VM)








Native JAI  false   



Native JAI ImageIO  false


OS: Linux centos64 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 
x86_64 x86_64 x86_64 GNU/Linux



Web container: Apache Tomcat/7.0.30





--
Keep yourself connected to Go Parallel: 
TUNE You got it built. Now make it sing. Tune shows you how.
http://goparallel.sourceforge.net
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
  --
Keep yourself connected to Go Parallel: 
TUNE You got it built. Now make it sing. Tune shows you how.
http://goparallel.sourceforge.net___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] time index in image mosaic

2012-11-06 Thread Carlo Cancellieri

Uwe,

> using the REST interface - is it possible to append a file to the coverage 
> store and have it rebuild its indexes?

It is not supported, you have to modify the datastore and recreate the index 
manually.
Carlo


--Uwe Rosebrock
Software Engineer
CSIRO Marine & Atmospheric Research 
T +61 (0)3 6232 5181  E uwe.rosebr...@csiro.au M +61 (0)422 513453 
Castray Esplanade,Hobart, TAS 7000www.csiro.au



--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
  --
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


  1   2   >