[Geoserver-devel] [jira] Created: (GEOS-3679) AbstractGetMapProducer's instance variables not thread safe -- race condition exists when set by GetMapResponse

2009-11-27 Thread David Niedzielski (JIRA)
AbstractGetMapProducer's instance variables not thread safe -- race condition exists when set by GetMapResponse --- Key: GEOS-3679 URL: http://jira.codehau

Re: [Geoserver-devel] Direct manipulation of the Catalog

2009-11-27 Thread Greg Ederer
Hi Justin, Thanks for the response. I implemented a solution using REST with GeoServer 1.7.x. Unfortunately, with the volume of data that we have to process, this is just too inefficient. This is why I have decided to replace this system with one that directly manipulates the GeoServer 2.0 C

[Geoserver-devel] Build failed in Hudson: geoserver-2.0.x #132

2009-11-27 Thread Hudson
See Changes: [francesco.izzi] port web-security to core modules -- [...truncated 20478 lines...] PARAMETER["false_northing", 0.0], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["No

Re: [Geoserver-devel] Direct manipulation of the Catalog

2009-11-27 Thread Justin Deoliveira
Hi Greg, Have you considered using the restconfig extension? http://docs.geoserver.org/1.7.x/en/user/extensions/rest/index.html It allows you to modify the catalog via HTTP requests. Regardless if that works for you the restconfig code serves as a good example of how to use the catalog CRUD fu

Re: [Geoserver-devel] 2.0.x SNAPSHOT version?

2009-11-27 Thread Justin Deoliveira
I don't think we have ever been 100% consistent about this. But in general on the stable branch we have included the patch number in snapshot version numbers. I know others have stated that this looks odd as well. I do find it kind of useful to be able to tell what release stream a snapshot com

[Geoserver-devel] Direct manipulation of the Catalog

2009-11-27 Thread Greg Ederer
Hi, I'm working on a system that automatically updates our datasets in GeoServer. I'm implementing this using Spring within the GeoServer application context. So far, I've managed to instantiate my bean, inject it with the running GeoServer instance, and access the Catalog. My goal is to be

Re: [Geoserver-devel] Exposing advanced projection handling support

2009-11-27 Thread Justin Deoliveira
I would say expose it now since afaik there is no concrete time frame for the streaming/shapefile renderer merge? Is the only reason not to expose it by default that it still requires some quality assurance? Assuming that at some point these improvements will become the default I would say avoi

[Geoserver-devel] Hudson build is back to normal: geoserver-2.0.x #131

2009-11-27 Thread Hudson
See -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and

[Geoserver-devel] Hudson build is back to normal: geoserver-trunk #2150

2009-11-27 Thread Hudson
See -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus

Re: [Geoserver-devel] [Geoserver-users] Geoserver WPS module?

2009-11-27 Thread Andrea Aime
David R Robison ha scritto: > Thanks. Are there any documents on how to deploy it within an existing > implementation of geoserver? This way I could begin to play with it and > evaluate where it stands verses our needs. Nope, there is nothing. It's not even built as part of the regular builds, y

Re: [Geoserver-devel] hudson trunk failures

2009-11-27 Thread Andrea Aime
Gabriel Roldan ha scritto: > Hudson's trunk build succeeds but then it fails with the following email > related exception, any clue? I think it was a mis-configured IRC notification. Tried to fix it, let's see if it worked Cheers Andrea -- Andrea Aime OpenGeo - http://opengeo.org Expert servic

[Geoserver-devel] Hudson build is back to normal: geoserver-trunk #2149

2009-11-27 Thread Hudson
See -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and

[Geoserver-devel] Build failed in Hudson: geoserver-trunk #2148

2009-11-27 Thread Hudson
See Changes: [groldan] GEOS-3677 [arneke] GWC Adding transaction listener, will truncate cache on WFS-T events -- [...truncated 21289 lines...] Default Styler

[Geoserver-devel] Build failed in Hudson: geoserver-2.0.x #130

2009-11-27 Thread Hudson
See Changes: [groldan] merge back patch for GEOS-3677 [arneke] GWC Adding transaction listener, will truncate cache on WFS-T events -- [...truncated 20435 lines...] Default Style

[Geoserver-devel] hudson trunk failures

2009-11-27 Thread Gabriel Roldan
Hudson's trunk build succeeds but then it fails with the following email related exception, any clue? [INFO] [INFO] BUILD SUCCESSFUL [INFO] [INFO] To

[Geoserver-devel] [jira] Created: (GEOS-3678) cache WMS GetMapProducers to void expensive lookup specially under high concurrency

2009-11-27 Thread JIRA
cache WMS GetMapProducers to void expensive lookup specially under high concurrency --- Key: GEOS-3678 URL: http://jira.codehaus.org/browse/GEOS-3678 Project: GeoServer

[Geoserver-devel] [jira] Created: (GEOS-3677) double check for cached coverage reader on ResourcePool's synchronized block

2009-11-27 Thread JIRA
double check for cached coverage reader on ResourcePool's synchronized block Key: GEOS-3677 URL: http://jira.codehaus.org/browse/GEOS-3677 Project: GeoServer Issue

Re: [Geoserver-devel] [Geotools-devel] Concurrency patch to CommonFactoryFinder

2009-11-27 Thread Gabriel Roldan
> Made the same question time ago: > http://n2.nabble.com/Common-factory-finder-synchronization-and-caching-td1948914.html#a1948914 > > > > Long story short, SPI lookups are so involved that even just a scan > through them mutates the state of the registry. Sigh... Good stuff. Yet last Martin'

Re: [Geoserver-devel] Concurrency patch to GeoServerExtensions.extensions

2009-11-27 Thread Gabriel Roldan
Andrea Aime wrote: > Gabriel Roldan ha scritto: >> Another potential bottleneck I found while profiling is >> GeoServerExtensions.extensions. >> It is really going to be important when geoserver is hit by multiple >> requests right after startup, when the cache is not yet filled. But >> it's a p

Re: [Geoserver-devel] Concurrency patch to GeoServerExtensions.extensions

2009-11-27 Thread Andrea Aime
Gabriel Roldan ha scritto: > Another potential bottleneck I found while profiling is > GeoServerExtensions.extensions. > It is really going to be important when geoserver is hit by multiple > requests right after startup, when the cache is not yet filled. But it's > a pretty high penalty in that

Re: [Geoserver-devel] [Geotools-devel] Concurrency patch to CommonFactoryFinder

2009-11-27 Thread Andrea Aime
Gabriel Roldan ha scritto: > Hi all, > > first off, sorry for cross posting. > > the following is a patch for CommonFactoryFinder for which I'd like a > review/comments/concerns/permission to commit: > > > The thing is that on a geoserver WMS profiling session,

Re: [Geoserver-devel] Patch for ResourcePool.getGridCoverageReader

2009-11-27 Thread Gabriel Roldan
Thanks for the quick review Andrea, I will commit with a related jira then just in case we want to roll it back later. Cheers, Gabriel Andrea Aime wrote: > Gabriel Roldan ha scritto: >> Justin, all >> >> during my last weeks of arcsde gce stress testing, I found a potential >> concurrency pena

[Geoserver-devel] Concurrency patch to CommonFactoryFinder

2009-11-27 Thread Gabriel Roldan
Hi all, first off, sorry for cross posting. the following is a patch for CommonFactoryFinder for which I'd like a review/comments/concerns/permission to commit: The thing is that on a geoserver WMS profiling session, the getFilterFactory method is used by every

Re: [Geoserver-devel] GSIP 24

2009-11-27 Thread Alessio Fabiani
Actually is only parsing, as a preparation for the next step. --- Eng. Alessio Fabiani Founder / CTO GeoSolutions S.A.S. Via Carignoni 51 55041 Camaiore (LU) Italy phone: +39 0584 980933 fax: +39 0584 983027 mob:+39 349 8227000 http:/

[Geoserver-devel] Concurrency patch to GeoServerExtensions.extensions

2009-11-27 Thread Gabriel Roldan
Another potential bottleneck I found while profiling is GeoServerExtensions.extensions. It is really going to be important when geoserver is hit by multiple requests right after startup, when the cache is not yet filled. But it's a pretty high penalty in that situation, as context.getBean* meth

Re: [Geoserver-devel] Patch for ResourcePool.getGridCoverageReader

2009-11-27 Thread Andrea Aime
Gabriel Roldan ha scritto: > Justin, all > > during my last weeks of arcsde gce stress testing, I found a potential > concurrency penalty in ResourcePool.getGridCoverageReader. If hit with > various concurrent requests at it may instantiate lots of readers to > ultimately leave a single one cac

Re: [Geoserver-devel] GSIP 24

2009-11-27 Thread Andrea Aime
Alessio Fabiani ha scritto: > Hello guys, > > with the porting of WCS 1.0 EMF bindings on trunk we can consider done > the GSIP 24 (TIME-ELEVATION-BAND parameters parsing for WMS 1.1.1 WCS 1.X). > > Have you some concern or question on turning it to completed state? None really. That is just pa

Re: [Geoserver-devel] [Geoserver-users] Geoserver WPS module?

2009-11-27 Thread Andrea Aime
Simone Giannecchini ha scritto: > Ciao David, > we are doing some experiments and I know that aaime is doing some work > in this regards. > I have some limited funding to improve WPS, which I am drawing from > another project, therefore it would be nice to have a grasp on what > has been done alrea

[Geoserver-devel] Hudson build is back to normal: geoserver-trunk #2147

2009-11-27 Thread Hudson
See -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and

[Geoserver-devel] Patch for ResourcePool.getGridCoverageReader

2009-11-27 Thread Gabriel Roldan
Justin, all during my last weeks of arcsde gce stress testing, I found a potential concurrency penalty in ResourcePool.getGridCoverageReader. If hit with various concurrent requests at it may instantiate lots of readers to ultimately leave a single one cached. The following patch applies the sa

Re: [Geoserver-devel] build failing -

2009-11-27 Thread Andrea Aime
Save, Yash ha scritto: > Hi, > > > > While I am trying to build the geoserver I am getting the error > > “Could not instatiate converter : > com.thoughtworks.xstream.converters.enums.EnumMapConverter : null” > > > > I am using: > > > > JAVA version:"1.5.0" > > Linux d

[Geoserver-devel] GSIP 24

2009-11-27 Thread Alessio Fabiani
Hello guys, with the porting of WCS 1.0 EMF bindings on trunk we can consider done the GSIP 24 (TIME-ELEVATION-BAND parameters parsing for WMS 1.1.1 WCS 1.X). Have you some concern or question on turning it to completed state? --- Eng. Alessio

[Geoserver-devel] Hudson build is back to normal: geoserver-trunk #2146

2009-11-27 Thread Hudson
See -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and

[Geoserver-devel] Build failed in Hudson: geoserver-trunk #2145

2009-11-27 Thread Hudson
See Changes: [arneke] GWC Clear cache on style changes -- [...truncated 21278 lines...] AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degre

Re: [Geoserver-devel] WCS output formats

2009-11-27 Thread Daniele Romagnoli
Hi Mathew, great to see that you have added support for EnviHdr at geotools level. If you want to share with us your code we will take a look on it and we will include it in geotools. About the ENVIHdr ImageWriter plugin, adding it to the imageio-ext plugins should be a feasible task in a short amo

[Geoserver-devel] [jira] Created: (GEOS-3676) SchemaLocations on the WFS output header are invalid

2009-11-27 Thread Rini Angreani (JIRA)
SchemaLocations on the WFS output header are invalid Key: GEOS-3676 URL: http://jira.codehaus.org/browse/GEOS-3676 Project: GeoServer Issue Type: Bug Components: WFS Affects

Re: [Geoserver-devel] [Geoserver-users] GDAL GeoTiff plugin [WAS: Re: raster getFeatureInfo...]

2009-11-27 Thread Simone Giannecchini
Ciao Jean, I have opened up a jira for this: http://jira.codehaus.org/browse/GEOT-2864 However this does not mean that we (as in the geotools/geoserver project) are going to add this functionality right away, unless someone provide funding/workforce. Besides it would be nice if you caould attach

Re: [Geoserver-devel] [Geoserver-users] Permissions to add/edit pages on GeoServer Wiki

2009-11-27 Thread Andrea Aime
Alessio Fabiani ha scritto: > Hi guys, > > I would like to update/add some documentation to the GeoServer wiki but > actually I don't have permissions to do that ... Who should I ping in > order to ask writing rights? Mumble, I don't know, but it might be that writing was restricted on the wiki

[Geoserver-devel] Permissions to add/edit pages on GeoServer Wiki

2009-11-27 Thread Alessio Fabiani
Hi guys, I would like to update/add some documentation to the GeoServer wiki but actually I don't have permissions to do that ... Who should I ping in order to ask writing rights? My user is afabiani Thanks, Alessio. --- Eng. Alessio

[Geoserver-devel] Hudson build is back to normal: geoserver-trunk #2144

2009-11-27 Thread Hudson
See -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus

[Geoserver-devel] [jira] Created: (GEOS-3675) Enable WCS to use raster overviews

2009-11-27 Thread Simone Giannecchini (JIRA)
Enable WCS to use raster overviews -- Key: GEOS-3675 URL: http://jira.codehaus.org/browse/GEOS-3675 Project: GeoServer Issue Type: Improvement Components: WCS Affects Versions: 2.0.0

Re: [Geoserver-devel] Help running CITE tests

2009-11-27 Thread Rini.Angreani
Hi Justin, Thank's for that. I can get WFS 1.0.0 to pass, but I keep getting these errors with WFS 1.1.0 with latest clean code. 27 Nov 17:40:09 ERROR [geoserver.ows] - org.geoserver.wfs.WFSException: Invalid request cvc-complex-type.3.2.2: Attribute 'xml:base' is not allowed to appear in elem

Re: [Geoserver-devel] [Geoserver-users] Geoserver WPS module?

2009-11-27 Thread Simone Giannecchini
Ciao David, we are doing some experiments and I know that aaime is doing some work in this regards. I have some limited funding to improve WPS, which I am drawing from another project, therefore it would be nice to have a grasp on what has been done already (ciao aaime :-) ) and on how we could jo

[Geoserver-devel] build failing -

2009-11-27 Thread Save, Yash
Hi, While I am trying to build the geoserver I am getting the error "Could not instatiate converter : com.thoughtworks.xstream.converters.enums.EnumMapConverter : null" I am using: JAVA version:"1.5.0" Linux distribution: Debian GNU/Linux 5.0 I am buildi

Re: [Geoserver-devel] PSC: GSIP 43, release cycle lenght

2009-11-27 Thread Andrea Aime
Jody Garnett ha scritto: >> I am still try to convince myself that the "release early, release >> often" is a good approach. My preference goes to "release when it's >> worth, release something that is rock solid" > > One solid point the in the favour of release early release often is it > takes s

Re: [Geoserver-devel] PSC refresh, looking for candidates

2009-11-27 Thread Andrea Aime
Jody Garnett ha scritto: > The responsibilities are listed here: > - http://geoserver.org/display/GEOSDOC/0+Project+Steering+Committee > - > http://geoserver.org/display/GEOS/GSIP+1+-+Project+Steering+Committee+formation Imho the document is missing something crucial. It should state that a PSC