<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-1193</id>
	<title>Nabble - GeoServer</title>
	<updated>2009-11-27T09:14:56Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/GeoServer-f1193.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GeoServer-f1193.html" />
	<subtitle type="html">GeoServer project is a full transactional Java (J2EE) implementation of the OpenGIS Consortium's Web Feature Server specification, with an integrated WMS. GeoServer home is &lt;a href=&quot;http://geoserver.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26545287</id>
	<title>[jira] Created: (GEOS-3677) double check for cached coverage reader on ResourcePool's synchronized block</title>
	<published>2009-11-27T09:14:56Z</published>
	<updated>2009-11-27T09:14:56Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">double check for cached coverage reader on ResourcePool's synchronized block
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: GEOS-3677
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/GEOS-3677&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/GEOS-3677&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: GeoServer
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Improvement
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Configuration
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: 2.0.0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Gabriel Roldán
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Gabriel Roldán
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: 2.0.1, 2.1.x
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt;From email:
&lt;br&gt;{panel}
&lt;br&gt;Thanks for the quick review Andrea,
&lt;br&gt;&lt;br&gt;I will commit with a related jira then just in case we want to roll it 
&lt;br&gt;back later.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Gabriel
&lt;br&gt;&lt;br&gt;Andrea Aime wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt; Gabriel Roldan ha scritto:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Justin, all
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; during my last weeks of arcsde gce stress testing, I found a potential 
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; concurrency penalty in ResourcePool.getGridCoverageReader. If hit with 
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; various concurrent requests at it may instantiate lots of readers to 
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; ultimately leave a single one cached.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; The following patch applies the same trick than for 
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; ResourcePool.getDataStore, please let me know if it seems appropriate 
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; to you: &amp;lt;&lt;a href=&quot;http://pastebin.com/m32ebb87b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m32ebb87b&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; It just double checks for the cached reader after acquiring the lock 
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; on the cache.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; The patch looks good to me.
&lt;br&gt;&amp;gt; &amp;gt; Maybe remove those capital letters comments &amp;nbsp;;-) 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; (I noticed they are also in the original code, not sure why...)
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Cheers
&lt;br&gt;&amp;gt; &amp;gt; Andrea
&lt;/div&gt;{panel}
&lt;br&gt;&lt;br&gt;Patch is:
&lt;br&gt;{code}
&lt;br&gt;Index: src/main/java/org/geoserver/catalog/ResourcePool.java
&lt;br&gt;===================================================================
&lt;br&gt;--- src/main/java/org/geoserver/catalog/ResourcePool.java	(revision 13649)
&lt;br&gt;+++ src/main/java/org/geoserver/catalog/ResourcePool.java	(working copy)
&lt;br&gt;&amp;nbsp;-682,16 +682,23 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;synchronized ( hints != null ? hintCoverageReaderCache : coverageReaderCache ) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/////////////////////////////////////////////////////////
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Getting coverage reader using the format and the real path.
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// /////////////////////////////////////////////////////////
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;final File obj = GeoserverDataDirectory.findDataFile(info.getURL());
&lt;br&gt;-
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// XXX CACHING READERS HERE
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;reader = (info.getFormat()).getReader(obj,hints);
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(hints != null ? hintCoverageReaderCache : coverageReaderCache ).put(info, reader); 
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (hints != null) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;reader = (GridCoverageReader) hintCoverageReaderCache.get(info);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;} else {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;reader = (GridCoverageReader) coverageReaderCache.get(info);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (reader == null) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/////////////////////////////////////////////////////////
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Getting coverage reader using the format and the real path.
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// /////////////////////////////////////////////////////////
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;final File obj = GeoserverDataDirectory.findDataFile(info.getURL());
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// XXX CACHING READERS HERE
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;reader = (info.getFormat()).getReader(obj,hints);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(hints != null ? hintCoverageReaderCache : coverageReaderCache ).put(info, reader);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return reader;
&lt;br&gt;{code}
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26545287&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28GEOS-3677%29-double-check-for-cached-coverage-reader-on-ResourcePool%27s-synchronized-block-tp26545287p26545287.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26544344</id>
	<title>does not see the arcsde layers</title>
	<published>2009-11-27T08:02:50Z</published>
	<updated>2009-11-27T08:02:50Z</updated>
	<author>
		<name>esevens</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I installed the new geoserver 2.0.0, dowloaded the extension for arcsde9.2 and placed the jsde_sdk.jar and jpe_sdk.jar for arcsde9.2 in the WEB-INF/lib directory of the GeoServer installation.
&lt;br&gt;&lt;br&gt;I configured the sde connection and tried afterwards to get the layers for my new sde store.
&lt;br&gt;&lt;br&gt;Unfortunately, no GIS-layers show up, although there are a lot of them within the arcsde database.
&lt;br&gt;Normally I connect through Arc-Catalog to Arc-SDE
&lt;br&gt;&lt;br&gt;The ArcSDE is installed above a IBM DB2 v9.1 database.
&lt;br&gt;&lt;br&gt;I checked the connection parameters for the SDE store and it should work normally.
&lt;br&gt;In the logfile I don' find any errors.
&lt;br&gt;&lt;br&gt;Anybody who can help me?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Erwin Sevens
&lt;br&gt;OVAM
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/does-not-see-the-arcsde-layers-tp26544344p26544344.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26544364</id>
	<title>Re: [Geoserver-devel]  Geoserver WPS module?</title>
	<published>2009-11-27T08:02:37Z</published>
	<updated>2009-11-27T08:02:37Z</updated>
	<author>
		<name>DavidRobison</name>
	</author>
	<content type="html">Thanks. Are there any documents on how to deploy it within an existing 
&lt;br&gt;implementation of geoserver? This way I could begin to play with it and 
&lt;br&gt;evaluate where it stands verses our needs.
&lt;br&gt;&lt;br&gt;My interest in an integrated geoserver WPS lies in trying to increase 
&lt;br&gt;the performance of our WPS calls. We are currently using 52 North's WPS 
&lt;br&gt;server and it is working well. However, for some large geometries and/or 
&lt;br&gt;data sets, when the WPS fetches the data from the WFS there is a huge 
&lt;br&gt;penalty in converting the features to GML and then back to features 
&lt;br&gt;again. What I want to investigate is if the geoserver's WPS module could 
&lt;br&gt;capture those WFS calls and execute the WFS module directly rather than 
&lt;br&gt;making a HTTP call back to itself. Anyway, thanks for the information. David
&lt;br&gt;&lt;br&gt;Andrea Aime wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Simone Giannecchini ha scritto:
&lt;br&gt;&amp;gt;&amp;gt; Ciao David,
&lt;br&gt;&amp;gt;&amp;gt; we are doing some experiments and I know that aaime is doing some work
&lt;br&gt;&amp;gt;&amp;gt; in this regards.
&lt;br&gt;&amp;gt;&amp;gt; I have some limited funding to improve WPS, which I am drawing from
&lt;br&gt;&amp;gt;&amp;gt; another project, therefore it would be nice to have a grasp on what
&lt;br&gt;&amp;gt;&amp;gt; has been done already (ciao aaime :-) ) &amp;nbsp;and on how we could join
&lt;br&gt;&amp;gt;&amp;gt; forces.
&lt;br&gt;&amp;gt;&amp;gt; Besides, if anyone else is interested in provide some
&lt;br&gt;&amp;gt;&amp;gt; workforce/funding, I would like to hear his voice.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt; yeah, I've been trying to work on WPS during the past year with
&lt;br&gt;&amp;gt; not much success, basically because I find time to dedicate to
&lt;br&gt;&amp;gt; it a day a month and by the time I remember enough about the
&lt;br&gt;&amp;gt; module to do some coding the day has almost ended.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That's why last time I found some time I wrote a little doc instead
&lt;br&gt;&amp;gt; of coding:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://docs.geoserver.org/2.0.x/en/developer/programming-guide/wps/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.geoserver.org/2.0.x/en/developer/programming-guide/wps/index.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I hope that helps. Personally I have no time to dedicate to it,
&lt;br&gt;&amp;gt; it requires some sustained commitment to be moved forward and
&lt;br&gt;&amp;gt; I just can't find enough continued time to push it forward.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt; Andrea
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;David R Robison
&lt;br&gt;Open Roads Consulting, Inc.
&lt;br&gt;103 Watson Road, Chesapeake, VA 23320
&lt;br&gt;phone: (757) 546-3401
&lt;br&gt;e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26544364&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;drrobison@...&lt;/a&gt;
&lt;br&gt;web: &lt;a href=&quot;http://openroadsconsulting.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://openroadsconsulting.com&lt;/a&gt;&lt;br&gt;blog: &lt;a href=&quot;http://therobe.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://therobe.blogspot.com&lt;/a&gt;&lt;br&gt;book: &lt;a href=&quot;http://www.xulonpress.com/bookstore/bookdetail.php?PB_ISBN=9781597816526&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.xulonpress.com/bookstore/bookdetail.php?PB_ISBN=9781597816526&lt;/a&gt;&lt;br&gt;&lt;br&gt;This e-mail communication (including any attachments) may contain confidential and/or privileged material intended solely for the individual or entity to which it is addressed. &amp;nbsp;If you are not the intended recipient, you should immediately stop reading this message and delete it from all computers that it resides on. Any unauthorized reading, distribution, copying or other use of this communication (or its attachments) is strictly prohibited. &amp;nbsp;If you have received this communication in error, please notify us immediately. &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26544364&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/print-module-tp26048352p26544364.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26544874</id>
	<title>Re: [Geotools-devel] Concurrency patch to CommonFactoryFinder</title>
	<published>2009-11-27T07:42:26Z</published>
	<updated>2009-11-27T07:42:26Z</updated>
	<author>
		<name>Gabriel Roldan</name>
	</author>
	<content type="html">&amp;gt; Made the same question time ago:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/Common-factory-finder-synchronization-and-caching-td1948914.html#a1948914&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Common-factory-finder-synchronization-and-caching-td1948914.html#a1948914&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Long story short, SPI lookups are so involved that even just a scan 
&lt;br&gt;&amp;gt; through them mutates the state of the registry. Sigh...
&lt;br&gt;Good stuff. Yet last Martin's suggestion of cacheing the result of the 
&lt;br&gt;lookup whenever possible is good. And in this case it's just performed 
&lt;br&gt;by the SimpleFeatureBuilder used to wrap a coverage as a Feature if I 
&lt;br&gt;remember well, so a good fit.
&lt;br&gt;&lt;br&gt;Gonna see where exactly was it.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Gabriel
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt; Andrea
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Gabriel Roldan
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26544874&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Concurrency-patch-to-CommonFactoryFinder-tp26543425p26544874.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26544693</id>
	<title>Re: Concurrency patch to GeoServerExtensions.extensions</title>
	<published>2009-11-27T07:28:29Z</published>
	<updated>2009-11-27T07:28:29Z</updated>
	<author>
		<name>Gabriel Roldan</name>
	</author>
	<content type="html">Andrea Aime wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Gabriel Roldan ha scritto:
&lt;br&gt;&amp;gt;&amp;gt; Another potential bottleneck I found while profiling is 
&lt;br&gt;&amp;gt;&amp;gt; GeoServerExtensions.extensions.
&lt;br&gt;&amp;gt;&amp;gt; It is really going to be important when geoserver is hit by multiple 
&lt;br&gt;&amp;gt;&amp;gt; requests right after startup, when the cache is not yet filled. But 
&lt;br&gt;&amp;gt;&amp;gt; it's a pretty high penalty in that situation, as context.getBean* 
&lt;br&gt;&amp;gt;&amp;gt; methods are quite expensive.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Patch would be something like: &amp;lt;&lt;a href=&quot;http://pastebin.com/m3f312d8c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m3f312d8c&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Permission to commit? comments? concerns?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hum... optimizing the first run seems kind of pointless to me, the JIT
&lt;br&gt;&amp;gt; has had not time to optimize the code still so GeoServer is running
&lt;br&gt;&amp;gt; at significantly reduced speed anyways.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;it is not about optimizing the first run, but about avoiding multiple 
&lt;br&gt;simultaneous calls to context.getBeanNamesForType which is expensive, if 
&lt;br&gt;that's what you mean. And can happen not only at startup but any time 
&lt;br&gt;the cache released the soft references.
&lt;br&gt;That said, on a second thought I think it may not be worth the extra 
&lt;br&gt;synchronization that may end up in locking threads unnecessarily more 
&lt;br&gt;often than it makes some good.
&lt;br&gt;&lt;br&gt;Thanks for the insights.
&lt;br&gt;&lt;br&gt;Gabriel
&lt;br&gt;&amp;gt; I mean, the patch is small anyways, so if you really feel like doing
&lt;br&gt;&amp;gt; it, I have no troubles with it. It just seems overkill.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt; Andrea
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Gabriel Roldan
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26544693&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Concurrency-patch-to-GeoServerExtensions.extensions-tp26543252p26544693.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543732</id>
	<title>Re: Concurrency patch to GeoServerExtensions.extensions</title>
	<published>2009-11-27T07:14:33Z</published>
	<updated>2009-11-27T07:14:33Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Gabriel Roldan ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Another potential bottleneck I found while profiling is 
&lt;br&gt;&amp;gt; GeoServerExtensions.extensions.
&lt;br&gt;&amp;gt; It is really going to be important when geoserver is hit by multiple 
&lt;br&gt;&amp;gt; requests right after startup, when the cache is not yet filled. But it's 
&lt;br&gt;&amp;gt; a pretty high penalty in that situation, as context.getBean* methods are 
&lt;br&gt;&amp;gt; quite expensive.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Patch would be something like: &amp;lt;&lt;a href=&quot;http://pastebin.com/m3f312d8c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m3f312d8c&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Permission to commit? comments? concerns?
&lt;/div&gt;&lt;br&gt;Hum... optimizing the first run seems kind of pointless to me, the JIT
&lt;br&gt;has had not time to optimize the code still so GeoServer is running
&lt;br&gt;at significantly reduced speed anyways.
&lt;br&gt;&lt;br&gt;I mean, the patch is small anyways, so if you really feel like doing
&lt;br&gt;it, I have no troubles with it. It just seems overkill.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543732&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Concurrency-patch-to-GeoServerExtensions.extensions-tp26543252p26543732.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543682</id>
	<title>Re: [Geotools-devel] Concurrency patch to CommonFactoryFinder</title>
	<published>2009-11-27T07:08:57Z</published>
	<updated>2009-11-27T07:08:57Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Gabriel Roldan ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; first off, sorry for cross posting.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; the following is a patch for CommonFactoryFinder for which I'd like a 
&lt;br&gt;&amp;gt; review/comments/concerns/permission to commit: 
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://pastebin.com/m3b046ebc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m3b046ebc&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The thing is that on a geoserver WMS profiling session, the 
&lt;br&gt;&amp;gt; getFilterFactory method is used by every request and being synchronized 
&lt;br&gt;&amp;gt; makes the threads block unnecesarily.
&lt;br&gt;&amp;gt; Now, all the getXXX methods seem to be synchronized only for the 
&lt;br&gt;&amp;gt; getServiceRegistry() method they call, which seems to be better done if 
&lt;br&gt;&amp;gt; synchronizing only the block of getServiceRegistry() that instantiates 
&lt;br&gt;&amp;gt; the registry itself. But I might be missing something... comments?
&lt;/div&gt;&lt;br&gt;Made the same question time ago:
&lt;br&gt;&lt;a href=&quot;http://n2.nabble.com/Common-factory-finder-synchronization-and-caching-td1948914.html#a1948914&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Common-factory-finder-synchronization-and-caching-td1948914.html#a1948914&lt;/a&gt;&lt;br&gt;&lt;br&gt;Long story short, SPI lookups are so involved that even just a scan 
&lt;br&gt;through them mutates the state of the registry. Sigh...
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543682&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Concurrency-patch-to-CommonFactoryFinder-tp26543425p26543682.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543444</id>
	<title>Re: the rest support of geoserver</title>
	<published>2009-11-27T06:52:11Z</published>
	<updated>2009-11-27T06:52:11Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">maven apache ha scritto:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;gt; config the service (wcs wms wfs and etc) also?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; This it cannot as far as I know. Justin will correct me in case
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I'm wrong, I'm not the REST module developer.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for you attention. In fact,I mentioned &amp;quot;to config the service&amp;quot;, I 
&lt;br&gt;&amp;gt; just want to stop/startup the service. 
&lt;br&gt;&lt;br&gt;Ah no, that is not possible. The lifecycle of GeoServer is managed by
&lt;br&gt;the web container that runs it, every container has different ways
&lt;br&gt;to start/stop a web application. Or you might want to just stop
&lt;br&gt;the container itself, again, the how it's container specific.
&lt;br&gt;The GeoServer bin and windows installer packages use Jetty, for example.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543444&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/the-rest-support-of-geoserver-tp26542865p26543444.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543381</id>
	<title>Re: GSIP 24</title>
	<published>2009-11-27T06:46:59Z</published>
	<updated>2009-11-27T06:46:59Z</updated>
	<author>
		<name>Alessio Fabiani-2</name>
	</author>
	<content type="html">Actually is only parsing, as a preparation for the next step.&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;-------------------------------------------------------&lt;br&gt;Eng. Alessio Fabiani&lt;br&gt;Founder / CTO GeoSolutions S.A.S.&lt;br&gt;Via Carignoni 51&lt;br&gt;
55041  Camaiore (LU)&lt;br&gt;Italy&lt;br&gt;&lt;br&gt;phone: +39 0584 980933&lt;br&gt;fax:      +39 0584 983027&lt;br&gt;mob:    +39 349 8227000&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://geo-solutions.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com&lt;/a&gt;&lt;br&gt;
-------------------------------------------------------&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 27, 2009 at 3:28 PM, Andrea Aime &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543381&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
Alessio Fabiani ha scritto:&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&amp;gt; Hello guys,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; with the porting of WCS 1.0 EMF bindings on trunk we can consider done&lt;br&gt;
&amp;gt; the GSIP 24 (TIME-ELEVATION-BAND parameters parsing for WMS 1.1.1 WCS 1.X).&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Have you some concern or question on turning it to completed state?&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;None really.&lt;br&gt;
That is just parsing right? So there is no actual&lt;br&gt;
demo data/request that can be run for users to see something... or&lt;br&gt;
there is?&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
Cheers&lt;br&gt;
Andrea&lt;br&gt;
&lt;br&gt;
--&lt;br&gt;
Andrea Aime&lt;br&gt;
OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;
Expert service straight from the developers.&lt;br&gt;
&lt;br&gt;
------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Geoserver-devel mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543381&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543381&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GSIP-24-tp26543015p26543381.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543377</id>
	<title>Re: the rest support of geoserver</title>
	<published>2009-11-27T06:46:14Z</published>
	<updated>2009-11-27T06:46:14Z</updated>
	<author>
		<name>maven apache</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/27 Andrea Aime &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543377&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
maven apache ha scritto:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&quot;&gt;
&lt;br&gt;
&lt;br&gt;
2009/11/27 Andrea Aime &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543377&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543377&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt;&amp;gt;&amp;gt;&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&lt;br&gt;
    maven apache ha scritto:&lt;br&gt;
&lt;br&gt;
        Hi:&lt;br&gt;
        What is the effect of the rest module in the geoserver? What I&lt;br&gt;
        can do if I use it ?&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
    The documentation, &amp;quot;REST&amp;quot; section, should give you an idea:&lt;br&gt;
&lt;br&gt;
    &lt;a href=&quot;http://docs.geoserver.org/2.0.x/en/user/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://docs.geoserver.org/2.0.x/en/user/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I have seen the pages,however I am not familiar enough with rest,and it seems that it can config the data severed by geoserver ,and I want to know can I use it if I want to:&lt;br&gt;
1&amp;gt; config the data&lt;br&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;br&gt;
Yes, it is meant to serve this purpose&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&quot;&gt;
2&amp;gt; config the service (wcs wms wfs and etc) also?&lt;br&gt;
&lt;/blockquote&gt;
&lt;br&gt;&lt;/div&gt;
This it cannot as far as I know. Justin will correct me in case&lt;br&gt;
I&amp;#39;m wrong, I&amp;#39;m not the REST module developer.&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks for you attention. In fact,I mentioned &amp;quot;to config the service&amp;quot;, I just want to stop/startup the service. &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&quot;&gt;
That to say I want to create a swing application with the similar function provided by the web pages of geoserver.  &lt;br&gt;
&lt;/blockquote&gt;
&lt;br&gt;&lt;/div&gt;
That would be nice to see.&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
&lt;br&gt;
Cheers&lt;br&gt;
Andrea&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Andrea Aime&lt;br&gt;
OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;
Expert service straight from the developers.&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543377&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/the-rest-support-of-geoserver-tp26542865p26543377.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543209</id>
	<title>Re: Patch for ResourcePool.getGridCoverageReader</title>
	<published>2009-11-27T06:34:01Z</published>
	<updated>2009-11-27T06:34:01Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Gabriel Roldan ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Justin, all
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; during my last weeks of arcsde gce stress testing, I found a potential 
&lt;br&gt;&amp;gt; concurrency penalty in ResourcePool.getGridCoverageReader. If hit with 
&lt;br&gt;&amp;gt; various concurrent requests at it may instantiate lots of readers to 
&lt;br&gt;&amp;gt; ultimately leave a single one cached.
&lt;br&gt;&amp;gt; The following patch applies the same trick than for 
&lt;br&gt;&amp;gt; ResourcePool.getDataStore, please let me know if it seems appropriate to 
&lt;br&gt;&amp;gt; you: &amp;lt;&lt;a href=&quot;http://pastebin.com/m32ebb87b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m32ebb87b&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It just double checks for the cached reader after acquiring the lock on 
&lt;br&gt;&amp;gt; the cache.
&lt;/div&gt;&lt;br&gt;The patch looks good to me.
&lt;br&gt;Maybe remove those capital letters comments ;-)
&lt;br&gt;&lt;br&gt;(I noticed they are also in the original code, not sure why...)
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543209&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Patch-for-ResourcePool.getGridCoverageReader-tp26543103p26543209.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543182</id>
	<title>Re: the rest support of geoserver</title>
	<published>2009-11-27T06:31:04Z</published>
	<updated>2009-11-27T06:31:04Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">maven apache ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 2009/11/27 Andrea Aime &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543182&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543182&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; maven apache ha scritto:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Hi:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; What is the effect of the rest module in the geoserver? What I
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; can do if I use it ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; The documentation, &amp;quot;REST&amp;quot; section, should give you an idea:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://docs.geoserver.org/2.0.x/en/user/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.geoserver.org/2.0.x/en/user/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have seen the pages,however I am not familiar enough with rest,and it 
&lt;br&gt;&amp;gt; seems that it can config the data severed by geoserver ,and I want to 
&lt;br&gt;&amp;gt; know can I use it if I want to:
&lt;br&gt;&amp;gt; 1&amp;gt; config the data
&lt;/div&gt;&lt;br&gt;Yes, it is meant to serve this purpose
&lt;br&gt;&lt;br&gt;&amp;gt; 2&amp;gt; config the service (wcs wms wfs and etc) also?
&lt;br&gt;&lt;br&gt;This it cannot as far as I know. Justin will correct me in case
&lt;br&gt;I'm wrong, I'm not the REST module developer.
&lt;br&gt;&lt;br&gt;&amp;gt; That to say I want to create a swing application with the similar 
&lt;br&gt;&amp;gt; function provided by the web pages of geoserver. &amp;nbsp;
&lt;br&gt;&lt;br&gt;That would be nice to see.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543182&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/the-rest-support-of-geoserver-tp26542865p26543182.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543141</id>
	<title>Re: GSIP 24</title>
	<published>2009-11-27T06:28:52Z</published>
	<updated>2009-11-27T06:28:52Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Alessio Fabiani ha scritto:
&lt;br&gt;&amp;gt; Hello guys,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; with the porting of WCS 1.0 EMF bindings on trunk we can consider done 
&lt;br&gt;&amp;gt; the GSIP 24 (TIME-ELEVATION-BAND parameters parsing for WMS 1.1.1 WCS 1.X).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Have you some concern or question on turning it to completed state?
&lt;br&gt;&lt;br&gt;None really.
&lt;br&gt;That is just parsing right? So there is no actual
&lt;br&gt;demo data/request that can be run for users to see something... or
&lt;br&gt;there is?
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543141&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GSIP-24-tp26543015p26543141.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543121</id>
	<title>Hudson build is back to normal: geoserver-trunk #2147</title>
	<published>2009-11-27T06:27:44Z</published>
	<updated>2009-11-27T06:27:44Z</updated>
	<author>
		<name>Arne Kepp</name>
	</author>
	<content type="html">See &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/2147/changes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/2147/changes&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543121&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Build-failed-in-Hudson%3A-geoserver-trunk--2140-tp26527626p26543121.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543126</id>
	<title>Re: [Geoserver-users] Geoserver WPS module?</title>
	<published>2009-11-27T06:27:33Z</published>
	<updated>2009-11-27T06:27:33Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Simone Giannecchini ha scritto:
&lt;br&gt;&amp;gt; Ciao David,
&lt;br&gt;&amp;gt; we are doing some experiments and I know that aaime is doing some work
&lt;br&gt;&amp;gt; in this regards.
&lt;br&gt;&amp;gt; I have some limited funding to improve WPS, which I am drawing from
&lt;br&gt;&amp;gt; another project, therefore it would be nice to have a grasp on what
&lt;br&gt;&amp;gt; has been done already (ciao aaime :-) ) &amp;nbsp;and on how we could join
&lt;br&gt;&amp;gt; forces.
&lt;br&gt;&amp;gt; Besides, if anyone else is interested in provide some
&lt;br&gt;&amp;gt; workforce/funding, I would like to hear his voice.
&lt;br&gt;&lt;br&gt;Hi all,
&lt;br&gt;yeah, I've been trying to work on WPS during the past year with
&lt;br&gt;not much success, basically because I find time to dedicate to
&lt;br&gt;it a day a month and by the time I remember enough about the
&lt;br&gt;module to do some coding the day has almost ended.
&lt;br&gt;&lt;br&gt;That's why last time I found some time I wrote a little doc instead
&lt;br&gt;of coding:
&lt;br&gt;&lt;a href=&quot;http://docs.geoserver.org/2.0.x/en/developer/programming-guide/wps/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.geoserver.org/2.0.x/en/developer/programming-guide/wps/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I hope that helps. Personally I have no time to dedicate to it,
&lt;br&gt;it requires some sustained commitment to be moved forward and
&lt;br&gt;I just can't find enough continued time to push it forward.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543126&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--Geoserver-users--Geoserver-WPS-module--tp26539922p26543126.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543136</id>
	<title>Re: [Geoserver-devel]  Geoserver WPS module?</title>
	<published>2009-11-27T06:27:33Z</published>
	<updated>2009-11-27T06:27:33Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Simone Giannecchini ha scritto:
&lt;br&gt;&amp;gt; Ciao David,
&lt;br&gt;&amp;gt; we are doing some experiments and I know that aaime is doing some work
&lt;br&gt;&amp;gt; in this regards.
&lt;br&gt;&amp;gt; I have some limited funding to improve WPS, which I am drawing from
&lt;br&gt;&amp;gt; another project, therefore it would be nice to have a grasp on what
&lt;br&gt;&amp;gt; has been done already (ciao aaime :-) ) &amp;nbsp;and on how we could join
&lt;br&gt;&amp;gt; forces.
&lt;br&gt;&amp;gt; Besides, if anyone else is interested in provide some
&lt;br&gt;&amp;gt; workforce/funding, I would like to hear his voice.
&lt;br&gt;&lt;br&gt;Hi all,
&lt;br&gt;yeah, I've been trying to work on WPS during the past year with
&lt;br&gt;not much success, basically because I find time to dedicate to
&lt;br&gt;it a day a month and by the time I remember enough about the
&lt;br&gt;module to do some coding the day has almost ended.
&lt;br&gt;&lt;br&gt;That's why last time I found some time I wrote a little doc instead
&lt;br&gt;of coding:
&lt;br&gt;&lt;a href=&quot;http://docs.geoserver.org/2.0.x/en/developer/programming-guide/wps/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.geoserver.org/2.0.x/en/developer/programming-guide/wps/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I hope that helps. Personally I have no time to dedicate to it,
&lt;br&gt;it requires some sustained commitment to be moved forward and
&lt;br&gt;I just can't find enough continued time to push it forward.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543136&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/print-module-tp26048352p26543136.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543087</id>
	<title>Re: the rest support of geoserver</title>
	<published>2009-11-27T06:23:33Z</published>
	<updated>2009-11-27T06:23:33Z</updated>
	<author>
		<name>maven apache</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/27 Andrea Aime &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543087&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
maven apache ha scritto:&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&quot;&gt;
Hi:&lt;br&gt;
What is the effect of the rest module in the geoserver? What I can do if I use it ?&lt;br&gt;
&lt;/blockquote&gt;
&lt;br&gt;&lt;/div&gt;
The documentation, &amp;quot;REST&amp;quot; section, should give you an idea:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://docs.geoserver.org/2.0.x/en/user/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://docs.geoserver.org/2.0.x/en/user/&lt;/a&gt;&lt;/blockquote&gt;&lt;div&gt;I have seen the pages,however I am not familiar enough with rest,and it seems that it can config the data severed by geoserver ,and I want to know can I use it if I want to:&lt;/div&gt;
&lt;div&gt;1&amp;gt; config the data&lt;/div&gt;&lt;div&gt;2&amp;gt; config the service (wcs wms wfs and etc) also?&lt;/div&gt;&lt;div&gt;That to say I want to create a swing application with the similar function provided by the web pages of geoserver.  &lt;/div&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
&lt;br&gt;
Cheers&lt;br&gt;
Andrea&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Andrea Aime&lt;br&gt;
OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;
Expert service straight from the developers.&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543087&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/the-rest-support-of-geoserver-tp26542865p26543087.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543075</id>
	<title>Re: build failing -</title>
	<published>2009-11-27T06:22:39Z</published>
	<updated>2009-11-27T06:22:39Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Save, Yash ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; While I am trying to build the geoserver I am getting the error
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; “Could not instatiate converter : 
&lt;br&gt;&amp;gt; com.thoughtworks.xstream.converters.enums.EnumMapConverter : null”
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am using:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; JAVA version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;1.5.0&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Linux distribution: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Debian GNU/Linux 5.0
&lt;/div&gt;&lt;br&gt;Hmm... Java version is not enough. Are you by any chance using gcj
&lt;br&gt;or OpenJDK?
&lt;br&gt;&lt;br&gt;GeoServer is developed against Sun JDK only, thought it's known to
&lt;br&gt;work with IBM JDK too, and runs (but never checked if it builds)
&lt;br&gt;with OpenJDK as well (at least it did a couple of months ago).
&lt;br&gt;Well... with OpenJDK it was crawling more than running, but worked
&lt;br&gt;anyways.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543075&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/build-failing---tp26539609p26543075.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543015</id>
	<title>GSIP 24</title>
	<published>2009-11-27T06:18:27Z</published>
	<updated>2009-11-27T06:18:27Z</updated>
	<author>
		<name>Alessio Fabiani-2</name>
	</author>
	<content type="html">Hello guys,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;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).&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Have you some concern or question on turning it to completed state?&lt;/div&gt;
&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;-------------------------------------------------------&lt;br&gt;Eng. Alessio Fabiani&lt;br&gt;Founder / CTO GeoSolutions S.A.S.&lt;br&gt;Via Carignoni 51&lt;br&gt;55041  Camaiore (LU)&lt;br&gt;Italy&lt;br&gt;&lt;br&gt;phone: +39 0584 980933&lt;br&gt;
fax:      +39 0584 983027&lt;br&gt;mob:    +39 349 8227000&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://geo-solutions.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com&lt;/a&gt;&lt;br&gt;-------------------------------------------------------&lt;br&gt;

&lt;/div&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543015&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GSIP-24-tp26543015p26543015.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26542958</id>
	<title>Re: the rest support of geoserver</title>
	<published>2009-11-27T06:13:28Z</published>
	<updated>2009-11-27T06:13:28Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">maven apache ha scritto:
&lt;br&gt;&amp;gt; Hi:
&lt;br&gt;&amp;gt; What is the effect of the rest module in the geoserver? What I can do if 
&lt;br&gt;&amp;gt; I use it ?
&lt;br&gt;&lt;br&gt;The documentation, &amp;quot;REST&amp;quot; section, should give you an idea:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://docs.geoserver.org/2.0.x/en/user/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.geoserver.org/2.0.x/en/user/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542958&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/the-rest-support-of-geoserver-tp26542865p26542958.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26542926</id>
	<title>Re: heigth? in Geoserver 2.0a GetLegendGraphic</title>
	<published>2009-11-27T06:11:07Z</published>
	<updated>2009-11-27T06:11:07Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Michelle Douville ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have some odd behaviour..
&lt;br&gt;&amp;gt; I can see all my layers in WMS Geoserver 2.0a using UDig 1.1.1.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; However when I am in Gaia 3.4 I do not see any of my layers.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I can get the capabilities and I compared the results of the getCapabilities
&lt;br&gt;&amp;gt; to version Geoserver 1.7.5 
&lt;br&gt;&amp;gt; and the only difference I really saw was the way the GetLegendGraphic was
&lt;br&gt;&amp;gt; declared..
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; in Geoserver 2.0a I get this..(I noticed that height is spelt differently)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;OnlineResource xmlns:xlink=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xlink&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; xlink:type=&amp;quot;simple&amp;quot;
&lt;br&gt;&amp;gt; xlink:href=&amp;quot;&lt;a href=&quot;http://server/geoserver2/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;heigth=20&amp;amp;layer=lsatgrid&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://server/geoserver2/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;heigth=20&amp;amp;layer=lsatgrid&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;OnlineResource xmlns:xlink=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xlink&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; xlink:type=&amp;quot;simple&amp;quot;
&lt;br&gt;&amp;gt; xlink:href=&amp;quot;&lt;a href=&quot;http://server:80/geoserver/wms/GetLegendGraphic?VERSION=1.0.0&amp;amp;FORMAT=image/png&amp;amp;WIDTH=20&amp;amp;HEIGHT=20&amp;amp;LAYER=prod:lsatgrid&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://server:80/geoserver/wms/GetLegendGraphic?VERSION=1.0.0&amp;amp;FORMAT=image/png&amp;amp;WIDTH=20&amp;amp;HEIGHT=20&amp;amp;LAYER=prod:lsatgrid&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Just wondering if anyone has seen this behaviour and if they have had
&lt;br&gt;&amp;gt; success with GAIA/Geoserver 2..
&lt;/div&gt;&lt;br&gt;This has been reported and fixed already:
&lt;br&gt;&lt;a href=&quot;http://jira.codehaus.org/browse/GEOS-3668&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/GEOS-3668&lt;/a&gt;&lt;br&gt;&lt;br&gt;Can you can grab a nightly build here and let us know if the problem
&lt;br&gt;is actually fixed?
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://gridlock.openplans.org/geoserver/2.0.x/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gridlock.openplans.org/geoserver/2.0.x/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542926&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/heigth--in-Geoserver-2.0a-GetLegendGraphic-tp26535847p26542926.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26542865</id>
	<title>the rest support of geoserver</title>
	<published>2009-11-27T06:05:42Z</published>
	<updated>2009-11-27T06:05:42Z</updated>
	<author>
		<name>maven apache</name>
	</author>
	<content type="html">Hi:&lt;div&gt;What is the effect of the rest module in the geoserver? What I can do if I use it ?&lt;/div&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542865&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/the-rest-support-of-geoserver-tp26542865p26542865.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543500</id>
	<title>Re: Patch for ResourcePool.getGridCoverageReader</title>
	<published>2009-11-27T05:55:38Z</published>
	<updated>2009-11-27T05:55:38Z</updated>
	<author>
		<name>Gabriel Roldan</name>
	</author>
	<content type="html">Thanks for the quick review Andrea,
&lt;br&gt;&lt;br&gt;I will commit with a related jira then just in case we want to roll it 
&lt;br&gt;back later.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Gabriel
&lt;br&gt;&lt;br&gt;Andrea Aime wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Gabriel Roldan ha scritto:
&lt;br&gt;&amp;gt;&amp;gt; Justin, all
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; during my last weeks of arcsde gce stress testing, I found a potential 
&lt;br&gt;&amp;gt;&amp;gt; concurrency penalty in ResourcePool.getGridCoverageReader. If hit with 
&lt;br&gt;&amp;gt;&amp;gt; various concurrent requests at it may instantiate lots of readers to 
&lt;br&gt;&amp;gt;&amp;gt; ultimately leave a single one cached.
&lt;br&gt;&amp;gt;&amp;gt; The following patch applies the same trick than for 
&lt;br&gt;&amp;gt;&amp;gt; ResourcePool.getDataStore, please let me know if it seems appropriate 
&lt;br&gt;&amp;gt;&amp;gt; to you: &amp;lt;&lt;a href=&quot;http://pastebin.com/m32ebb87b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m32ebb87b&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It just double checks for the cached reader after acquiring the lock 
&lt;br&gt;&amp;gt;&amp;gt; on the cache.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The patch looks good to me.
&lt;br&gt;&amp;gt; Maybe remove those capital letters comments ;-)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (I noticed they are also in the original code, not sure why...)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt; Andrea
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Gabriel Roldan
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543500&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Patch-for-ResourcePool.getGridCoverageReader-tp26543103p26543500.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543425</id>
	<title>Concurrency patch to CommonFactoryFinder</title>
	<published>2009-11-27T05:49:56Z</published>
	<updated>2009-11-27T05:49:56Z</updated>
	<author>
		<name>Gabriel Roldan</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;first off, sorry for cross posting.
&lt;br&gt;&lt;br&gt;the following is a patch for CommonFactoryFinder for which I'd like a 
&lt;br&gt;review/comments/concerns/permission to commit: 
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://pastebin.com/m3b046ebc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m3b046ebc&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;The thing is that on a geoserver WMS profiling session, the 
&lt;br&gt;getFilterFactory method is used by every request and being synchronized 
&lt;br&gt;makes the threads block unnecesarily.
&lt;br&gt;Now, all the getXXX methods seem to be synchronized only for the 
&lt;br&gt;getServiceRegistry() method they call, which seems to be better done if 
&lt;br&gt;synchronizing only the block of getServiceRegistry() that instantiates 
&lt;br&gt;the registry itself. But I might be missing something... comments?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Gabriel
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Gabriel Roldan
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543425&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Concurrency-patch-to-CommonFactoryFinder-tp26543425p26543425.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543252</id>
	<title>Concurrency patch to GeoServerExtensions.extensions</title>
	<published>2009-11-27T05:36:17Z</published>
	<updated>2009-11-27T05:36:17Z</updated>
	<author>
		<name>Gabriel Roldan</name>
	</author>
	<content type="html">&lt;br&gt;Another potential bottleneck I found while profiling is 
&lt;br&gt;GeoServerExtensions.extensions.
&lt;br&gt;It is really going to be important when geoserver is hit by multiple 
&lt;br&gt;requests right after startup, when the cache is not yet filled. But it's 
&lt;br&gt;a pretty high penalty in that situation, as context.getBean* methods are 
&lt;br&gt;quite expensive.
&lt;br&gt;&lt;br&gt;Patch would be something like: &amp;lt;&lt;a href=&quot;http://pastebin.com/m3f312d8c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m3f312d8c&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Permission to commit? comments? concerns?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Gabriel
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Gabriel Roldan
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543252&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Concurrency-patch-to-GeoServerExtensions.extensions-tp26543252p26543252.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26543103</id>
	<title>Patch for ResourcePool.getGridCoverageReader</title>
	<published>2009-11-27T05:25:12Z</published>
	<updated>2009-11-27T05:25:12Z</updated>
	<author>
		<name>Gabriel Roldan</name>
	</author>
	<content type="html">Justin, all
&lt;br&gt;&lt;br&gt;during my last weeks of arcsde gce stress testing, I found a potential 
&lt;br&gt;concurrency penalty in ResourcePool.getGridCoverageReader. If hit with 
&lt;br&gt;various concurrent requests at it may instantiate lots of readers to 
&lt;br&gt;ultimately leave a single one cached.
&lt;br&gt;The following patch applies the same trick than for 
&lt;br&gt;ResourcePool.getDataStore, please let me know if it seems appropriate to 
&lt;br&gt;you: &amp;lt;&lt;a href=&quot;http://pastebin.com/m32ebb87b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m32ebb87b&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;It just double checks for the cached reader after acquiring the lock on 
&lt;br&gt;the cache.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Gabriel
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Gabriel Roldan
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26543103&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Patch-for-ResourcePool.getGridCoverageReader-tp26543103p26543103.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26542325</id>
	<title>Re: [Geoserver-devel] GDAL GeoTiff plugin [WAS: Re: raster getFeatureInfo...]</title>
	<published>2009-11-27T05:18:02Z</published>
	<updated>2009-11-27T05:18:02Z</updated>
	<author>
		<name>Jean Pommier (IGE)</name>
	</author>
	<content type="html">Ciao Simone,&lt;br&gt;&lt;br&gt;Thanks for caring about this feature need. I&amp;#39;m not registered in Jira, but please, feel free to attach the geoTiff I gave you. &lt;br&gt;By the way, it is not fake data, but just an extract from a real data we are producing for a customer. Well, for intermediate work. The purpose was to use geoserver to share it (consultation only) with other experts, but doesn&amp;#39;t matter, we will find another way.&lt;br&gt;
&lt;br&gt;The fact is, is ArcGIS produces only such GeoTiffs, it would be great GeoServer could support them !&lt;br&gt;But right now, I believe we don&amp;#39;t have the means to finance sush work. Maybe, if I find some time, I could have a look at the code... but I&amp;#39;m pretty newbie to GeoServer&amp;#39;s code !&lt;br&gt;
Thanks again,&lt;br&gt;&lt;br&gt;Jean&lt;br&gt;&lt;blockquote style=&quot;margin: 1.5em 0pt;&quot;&gt;  &lt;div style=&quot;font-family: Verdana,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; line-height: 170%; font-size-adjust: none; font-stretch: normal;&quot;&gt;

    &lt;p style=&quot;font-style: italic; font-weight: bold; font-size: 11px; line-height: 120%;&quot;&gt;
      &lt;span style=&quot;font-size: 5.5pt; font-weight: normal;&quot;&gt;------&lt;/span&gt; &lt;br&gt;
      N’imprimez ce message qu’en cas de nécessité. Soyons éco-responsables !
    &lt;/p&gt;
     &lt;p style=&quot;color: rgb(183, 80, 17); font-style: italic; font-size: 17px; margin-top: 30px;&quot;&gt;
      Donnez une nouvelle dimension à vos données…
    &lt;/p&gt;

    &lt;div style=&quot;border: medium none ; font-weight: normal; width: 650px;&quot;&gt;
      &lt;p style=&quot;margin: 0pt; font-size: 24px; color: rgb(183, 80, 17); font-weight: bold; font-style: italic; text-align: center; line-height: 170%;&quot;&gt;
        I G E
      &lt;/p&gt;
      &lt;table style=&quot;border: 0px none ; margin: 0px; padding: 0px; border-collapse: collapse; font-family: Verdana,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 11px; line-height: 170%; font-size-adjust: none; font-stretch: normal; width: 100%;&quot;&gt;

        &lt;tbody&gt;&lt;tr&gt;
          &lt;td style=&quot;border-top: 1px solid rgb(170, 170, 170); text-align: left; width: 50%; padding-left: 7px; padding-top: 5px;&quot; valign=&quot;top&quot; width=&quot;50%&quot;&gt;
            &lt;p style=&quot;color: rgb(102, 102, 102); font-style: italic; line-height: 170%;&quot;&gt;
              &lt;span style=&quot;font-weight: bold; font-size: 13px; color: rgb(183, 80, 17);&quot;&gt;Jean POMMIER&lt;/span&gt;&lt;br&gt;
              &lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt; 
                &lt;b&gt;Directeur Associé&lt;/b&gt;&lt;br&gt;
                &lt;br&gt;
                TIC - Webmapping 3D
                &lt;br&gt;
                &lt;br&gt;              
                Port : +33 6 09 23 21 36 &lt;br&gt;
                Skype : igejean
              &lt;/span&gt;
            &lt;/p&gt;
          &lt;/td&gt;
          &lt;td style=&quot;border-top: 1px solid rgb(170, 170, 170); border-left: 1px solid rgb(170, 170, 170); text-align: right; width: 50%; padding-right: 7px; padding-top: 5px;&quot; valign=&quot;top&quot;&gt;&lt;p style=&quot;font-style: italic;&quot;&gt;

          &lt;span style=&quot;color: rgb(183, 80, 17); font-style: normal; font-weight: bold;&quot;&gt;
            &lt;span style=&quot;font-size: 14px;&quot;&gt;I&lt;/span&gt;nformation 
            &lt;span style=&quot;font-size: 14px;&quot;&gt;G&lt;/span&gt;éographique et 
            &lt;span style=&quot;font-size: 14px;&quot;&gt;E&lt;/span&gt;nvironnement
          &lt;/span&gt;&lt;br&gt;
          12 rue Arnaud Vidal&lt;br&gt;
          31000 Toulouse&lt;br&gt;
          France&lt;/p&gt;
          &lt;p style=&quot;font-style: italic; margin-bottom: 0px;&quot;&gt;Tel : +33 5 61 86 81 49&lt;br&gt;
          Fax : +33 5 61 86 09 23&lt;br&gt;
          Mail : &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542325&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;contact@...&lt;/a&gt;&lt;br&gt;
          Site web : &lt;a style=&quot;color: rgb(252, 100, 32);&quot; href=&quot;http://wwww.ige.fr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.ige.fr&lt;/a&gt;&lt;/p&gt;
          &lt;/td&gt;
        &lt;/tr&gt;
      &lt;/tbody&gt;&lt;/table&gt;
     &lt;/div&gt;

&lt;p&gt;&lt;b&gt;L&amp;#39;actualité d&amp;#39;IGE sur RSS : &lt;/b&gt;&lt;a style=&quot;color: rgb(252, 100, 32);&quot; href=&quot;http://www.ige.fr/actualites/rss.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ige.fr/actualites/rss.php&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Localisez IGE dans WorldWind : &lt;/b&gt;&lt;a style=&quot;color: rgb(252, 100, 32);&quot; href=&quot;worldwind://goto/world=Earth&amp;amp;lat=43.55519&amp;amp;lon=1.38256&amp;amp;alt=190&amp;amp;dir=26.7&amp;amp;tilt=60.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;worldwind://goto/world=Earth&amp;amp;lat=43.55519&amp;amp;lon=1.38256&amp;amp;alt=190&amp;amp;dir=26.7&amp;amp;tilt=60.3&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;
&lt;/blockquote&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/27 Simone Giannecchini &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542325&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;simone.giannecchini@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Ciao Jean,&lt;br&gt;
I have opened up a jira for this:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://jira.codehaus.org/browse/GEOT-2864&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/GEOT-2864&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
However this does not mean that we (as in the geotools/geoserver&lt;br&gt;
project) are going to add this functionality right away, unless&lt;br&gt;
someone provide funding/workforce.&lt;br&gt;
Besides it would be nice if you caould attach some sample data to this&lt;br&gt;
task, even using same fake geotiff.&lt;br&gt;
&lt;br&gt;
What do you think?&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
Simone.&lt;br&gt;
-------------------------------------------------------&lt;br&gt;
Ing. Simone Giannecchini&lt;br&gt;
GeoSolutions S.A.S.&lt;br&gt;
Founder - Software Engineer&lt;br&gt;
Via Carignoni 51&lt;br&gt;
55041  Camaiore (LU)&lt;br&gt;
Italy&lt;br&gt;
&lt;br&gt;
phone: +39 0584983027&lt;br&gt;
fax:      +39 0584983027&lt;br&gt;
mob:    +39 333 8128928&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://geo-solutions.blogspot.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://simboss.blogspot.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://simboss.blogspot.com/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.linkedin.com/in/simonegiannecchini&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/simonegiannecchini&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
-------------------------------------------------------&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;On Thu, Nov 26, 2009 at 9:51 AM, Jean Pommier (IGE) &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542325&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jean.pommier@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; Hi Simone,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks. It would be great !&lt;br&gt;
&amp;gt; I think, too, it would be nice to give the users the choice between the 2&lt;br&gt;
&amp;gt; versions : the current GeoTiff support being the basis, and the other one an&lt;br&gt;
&amp;gt; advanced GeoTiff support ?&lt;br&gt;
&amp;gt; I&amp;#39;ve never digged in GeoServer code, so I don&amp;#39;t think I could help this way,&lt;br&gt;
&amp;gt; but I could help for the documentation !&lt;br&gt;
&amp;gt; Cheers,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Jean&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; 2009/11/25 Andrea Aime &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542325&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Simone Giannecchini ha scritto:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Ciao Jean,&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; I am not sure which version of ArcGIS you are using, but looks like it&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; is the one that relies on GDAL itself :-).&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Gdal should allow you (us?) to elploit such geotiff, I am not so sure&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; about ways to convert it with GDAL to something that GeoServer can&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; exploit directly, like a multiband geotiff.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; I guess that the best thing would probably be to start including the&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; GDAL geotiff plugin as part of GeoTools so that we could optionally&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; use it in GeoServer to server geotiff as well, this should not be too&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; much work using the gdal extensions, but I suspect it would not even&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; be 1h work.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Anyway, the reason that I have been excluding geotiff support from the&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; GDAL extension has been that so far we have been quite able to do what&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; we needed with the java version therefore I did not like the idea of&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; mixing the two (and there also implications with the need for having&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; native libs around, which is always a pain). Now with the support for&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; statistics and RAT tables, I start to see the need for supporting GDAL&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; geotiff directly. I am cc&amp;#39;ing the devel list to get some feedback from&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; other developers.&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; I would not be against having the option, we just need to document&lt;br&gt;
&amp;gt;&amp;gt; well the pros and cons of each choice&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Cheers&lt;br&gt;
&amp;gt;&amp;gt; Andrea&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; --&lt;br&gt;
&amp;gt;&amp;gt; Andrea Aime&lt;br&gt;
&amp;gt;&amp;gt; OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt; Expert service straight from the developers.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&amp;gt; ------------------------------------------------------------------------------&lt;br&gt;
&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
&amp;gt; trial. Simplify your report design, integration and deployment - and focus&lt;br&gt;
&amp;gt; on&lt;br&gt;
&amp;gt; what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt; Geoserver-users mailing list&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542325&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542325&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GDAL-GeoTiff-plugin--WAS%3A-Re%3A-raster-getFeatureInfo...--tp26510802p26542325.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26542171</id>
	<title>Hudson build is back to normal: geoserver-trunk #2146</title>
	<published>2009-11-27T05:05:27Z</published>
	<updated>2009-11-27T05:05:27Z</updated>
	<author>
		<name>Arne Kepp</name>
	</author>
	<content type="html">See &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/2146/changes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/2146/changes&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26542171&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Build-failed-in-Hudson%3A-geoserver-trunk--2140-tp26527626p26542171.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26541996</id>
	<title>Build failed in Hudson: geoserver-trunk #2145</title>
	<published>2009-11-27T04:48:39Z</published>
	<updated>2009-11-27T04:48:39Z</updated>
	<author>
		<name>Arne Kepp</name>
	</author>
	<content type="html">See &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/2145/changes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/2145/changes&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Changes:
&lt;br&gt;&lt;br&gt;[arneke] GWC Clear cache on style changes
&lt;br&gt;&lt;br&gt;------------------------------------------
&lt;br&gt;[...truncated 21278 lines...]
&lt;br&gt;&amp;nbsp; &amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;6326&amp;quot;]], 
&lt;br&gt;&amp;nbsp; PRIMEM[&amp;quot;Greenwich&amp;quot;, 0.0, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;8901&amp;quot;]], 
&lt;br&gt;&amp;nbsp; UNIT[&amp;quot;degree&amp;quot;, 0.017453292519943295], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Geodetic longitude&amp;quot;, EAST], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Geodetic latitude&amp;quot;, NORTH], 
&lt;br&gt;&amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;4326&amp;quot;]]--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LatLonBoundingBox maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;BoundingBox SRS=&amp;quot;EPSG:4326&amp;quot; maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;Ponds&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Default Styler&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LegendURL height=&amp;quot;20&amp;quot; width=&amp;quot;20&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Format&amp;gt;image/png&amp;lt;/Format&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;OnlineResource xmlns:xlink=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xlink&lt;/a&gt;&amp;quot; xlink:href=&amp;quot;&lt;a href=&quot;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=Ponds&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=Ponds&lt;/a&gt;&amp;quot; xlink:type=&amp;quot;simple&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/LegendURL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Layer&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Layer queryable=&amp;quot;1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;sf:PrimitiveGeoFeature&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;PrimitiveGeoFeature&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract&amp;gt;abstract about PrimitiveGeoFeature&amp;lt;/Abstract&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Keyword&amp;gt;PrimitiveGeoFeature&amp;lt;/Keyword&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;SRS&amp;gt;EPSG:4326&amp;lt;/SRS&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--WKT definition of this CRS:
&lt;br&gt;GEOGCS[&amp;quot;WGS 84&amp;quot;, 
&lt;br&gt;&amp;nbsp; DATUM[&amp;quot;World Geodetic System 1984&amp;quot;, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; SPHEROID[&amp;quot;WGS 84&amp;quot;, 6378137.0, 298.257223563, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;7030&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;6326&amp;quot;]], 
&lt;br&gt;&amp;nbsp; PRIMEM[&amp;quot;Greenwich&amp;quot;, 0.0, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;8901&amp;quot;]], 
&lt;br&gt;&amp;nbsp; UNIT[&amp;quot;degree&amp;quot;, 0.017453292519943295], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Geodetic longitude&amp;quot;, EAST], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Geodetic latitude&amp;quot;, NORTH], 
&lt;br&gt;&amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;4326&amp;quot;]]--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LatLonBoundingBox maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;BoundingBox SRS=&amp;quot;EPSG:4326&amp;quot; maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;Default&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Default Styler&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LegendURL height=&amp;quot;20&amp;quot; width=&amp;quot;20&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Format&amp;gt;image/png&amp;lt;/Format&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;OnlineResource xmlns:xlink=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xlink&lt;/a&gt;&amp;quot; xlink:href=&amp;quot;&lt;a href=&quot;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=PrimitiveGeoFeature&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=PrimitiveGeoFeature&lt;/a&gt;&amp;quot; xlink:type=&amp;quot;simple&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/LegendURL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Layer&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Layer queryable=&amp;quot;1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;cite:RoadSegments&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;RoadSegments&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract&amp;gt;abstract about RoadSegments&amp;lt;/Abstract&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Keyword&amp;gt;RoadSegments&amp;lt;/Keyword&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;SRS&amp;gt;EPSG:4326&amp;lt;/SRS&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--WKT definition of this CRS:
&lt;br&gt;GEOGCS[&amp;quot;WGS 84&amp;quot;, 
&lt;br&gt;&amp;nbsp; DATUM[&amp;quot;World Geodetic System 1984&amp;quot;, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; SPHEROID[&amp;quot;WGS 84&amp;quot;, 6378137.0, 298.257223563, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;7030&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;6326&amp;quot;]], 
&lt;br&gt;&amp;nbsp; PRIMEM[&amp;quot;Greenwich&amp;quot;, 0.0, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;8901&amp;quot;]], 
&lt;br&gt;&amp;nbsp; UNIT[&amp;quot;degree&amp;quot;, 0.017453292519943295], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Geodetic longitude&amp;quot;, EAST], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Geodetic latitude&amp;quot;, NORTH], 
&lt;br&gt;&amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;4326&amp;quot;]]--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LatLonBoundingBox maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;BoundingBox SRS=&amp;quot;EPSG:4326&amp;quot; maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;RoadSegments&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Default Styler&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LegendURL height=&amp;quot;20&amp;quot; width=&amp;quot;20&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Format&amp;gt;image/png&amp;lt;/Format&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;OnlineResource xmlns:xlink=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xlink&lt;/a&gt;&amp;quot; xlink:href=&amp;quot;&lt;a href=&quot;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=RoadSegments&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=RoadSegments&lt;/a&gt;&amp;quot; xlink:type=&amp;quot;simple&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/LegendURL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Layer&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Layer queryable=&amp;quot;1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;cdf:Seven&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Seven&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract&amp;gt;abstract about Seven&amp;lt;/Abstract&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Keyword&amp;gt;Seven&amp;lt;/Keyword&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;SRS&amp;gt;EPSG:32615&amp;lt;/SRS&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--WKT definition of this CRS:
&lt;br&gt;PROJCS[&amp;quot;WGS 84 / UTM zone 15N&amp;quot;, 
&lt;br&gt;&amp;nbsp; GEOGCS[&amp;quot;WGS 84&amp;quot;, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; DATUM[&amp;quot;World Geodetic System 1984&amp;quot;, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; SPHEROID[&amp;quot;WGS 84&amp;quot;, 6378137.0, 298.257223563, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;7030&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;6326&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; PRIMEM[&amp;quot;Greenwich&amp;quot;, 0.0, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;8901&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; UNIT[&amp;quot;degree&amp;quot;, 0.017453292519943295], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AXIS[&amp;quot;Geodetic longitude&amp;quot;, EAST], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AXIS[&amp;quot;Geodetic latitude&amp;quot;, NORTH], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;4326&amp;quot;]], 
&lt;br&gt;&amp;nbsp; PROJECTION[&amp;quot;Transverse Mercator&amp;quot;, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;9807&amp;quot;]], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;central_meridian&amp;quot;, -93.0], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;latitude_of_origin&amp;quot;, 0.0], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;scale_factor&amp;quot;, 0.9996], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;false_easting&amp;quot;, 500000.0], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;false_northing&amp;quot;, 0.0], 
&lt;br&gt;&amp;nbsp; UNIT[&amp;quot;m&amp;quot;, 1.0], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Easting&amp;quot;, EAST], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Northing&amp;quot;, NORTH], 
&lt;br&gt;&amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;32615&amp;quot;]]--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LatLonBoundingBox maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;Default&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Default Styler&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LegendURL height=&amp;quot;20&amp;quot; width=&amp;quot;20&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Format&amp;gt;image/png&amp;lt;/Format&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;OnlineResource xmlns:xlink=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xlink&lt;/a&gt;&amp;quot; xlink:href=&amp;quot;&lt;a href=&quot;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=Seven&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=Seven&lt;/a&gt;&amp;quot; xlink:type=&amp;quot;simple&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/LegendURL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Layer&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Layer queryable=&amp;quot;1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;cite:Streams&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Streams&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract&amp;gt;abstract about Streams&amp;lt;/Abstract&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Keyword&amp;gt;Streams&amp;lt;/Keyword&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;SRS&amp;gt;EPSG:4326&amp;lt;/SRS&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--WKT definition of this CRS:
&lt;br&gt;GEOGCS[&amp;quot;WGS 84&amp;quot;, 
&lt;br&gt;&amp;nbsp; DATUM[&amp;quot;World Geodetic System 1984&amp;quot;, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; SPHEROID[&amp;quot;WGS 84&amp;quot;, 6378137.0, 298.257223563, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;7030&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;6326&amp;quot;]], 
&lt;br&gt;&amp;nbsp; PRIMEM[&amp;quot;Greenwich&amp;quot;, 0.0, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;8901&amp;quot;]], 
&lt;br&gt;&amp;nbsp; UNIT[&amp;quot;degree&amp;quot;, 0.017453292519943295], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Geodetic longitude&amp;quot;, EAST], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Geodetic latitude&amp;quot;, NORTH], 
&lt;br&gt;&amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;4326&amp;quot;]]--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LatLonBoundingBox maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;BoundingBox SRS=&amp;quot;EPSG:4326&amp;quot; maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;Streams&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Default Styler&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LegendURL height=&amp;quot;20&amp;quot; width=&amp;quot;20&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Format&amp;gt;image/png&amp;lt;/Format&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;OnlineResource xmlns:xlink=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xlink&lt;/a&gt;&amp;quot; xlink:href=&amp;quot;&lt;a href=&quot;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=Streams&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=Streams&lt;/a&gt;&amp;quot; xlink:type=&amp;quot;simple&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/LegendURL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Layer&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Layer queryable=&amp;quot;1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;cdf:Updates&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Updates&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract&amp;gt;abstract about Updates&amp;lt;/Abstract&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Keyword&amp;gt;Updates&amp;lt;/Keyword&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/KeywordList&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;SRS&amp;gt;EPSG:32615&amp;lt;/SRS&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--WKT definition of this CRS:
&lt;br&gt;PROJCS[&amp;quot;WGS 84 / UTM zone 15N&amp;quot;, 
&lt;br&gt;&amp;nbsp; GEOGCS[&amp;quot;WGS 84&amp;quot;, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; DATUM[&amp;quot;World Geodetic System 1984&amp;quot;, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; SPHEROID[&amp;quot;WGS 84&amp;quot;, 6378137.0, 298.257223563, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;7030&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;6326&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; PRIMEM[&amp;quot;Greenwich&amp;quot;, 0.0, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;8901&amp;quot;]], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; UNIT[&amp;quot;degree&amp;quot;, 0.017453292519943295], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AXIS[&amp;quot;Geodetic longitude&amp;quot;, EAST], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AXIS[&amp;quot;Geodetic latitude&amp;quot;, NORTH], 
&lt;br&gt;&amp;nbsp; &amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;4326&amp;quot;]], 
&lt;br&gt;&amp;nbsp; PROJECTION[&amp;quot;Transverse Mercator&amp;quot;, AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;9807&amp;quot;]], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;central_meridian&amp;quot;, -93.0], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;latitude_of_origin&amp;quot;, 0.0], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;scale_factor&amp;quot;, 0.9996], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;false_easting&amp;quot;, 500000.0], 
&lt;br&gt;&amp;nbsp; PARAMETER[&amp;quot;false_northing&amp;quot;, 0.0], 
&lt;br&gt;&amp;nbsp; UNIT[&amp;quot;m&amp;quot;, 1.0], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Easting&amp;quot;, EAST], 
&lt;br&gt;&amp;nbsp; AXIS[&amp;quot;Northing&amp;quot;, NORTH], 
&lt;br&gt;&amp;nbsp; AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;32615&amp;quot;]]--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LatLonBoundingBox maxx=&amp;quot;180.0&amp;quot; maxy=&amp;quot;90.0&amp;quot; minx=&amp;quot;-180.0&amp;quot; miny=&amp;quot;-90.0&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Name&amp;gt;Default&amp;lt;/Name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Title&amp;gt;Default Styler&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Abstract/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;LegendURL height=&amp;quot;20&amp;quot; width=&amp;quot;20&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Format&amp;gt;image/png&amp;lt;/Format&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;OnlineResource xmlns:xlink=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xlink&lt;/a&gt;&amp;quot; xlink:href=&amp;quot;&lt;a href=&quot;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=Updates&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost/proxy/wms?request=GetLegendGraphic&amp;amp;format=image%2Fpng&amp;amp;width=20&amp;amp;height=20&amp;amp;layer=Updates&lt;/a&gt;&amp;quot; xlink:type=&amp;quot;simple&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/LegendURL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Layer&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/Layer&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/Capability&amp;gt;
&lt;br&gt;&amp;lt;/WMT_MS_Capabilities&amp;gt;
&lt;br&gt;Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.315 sec
&lt;br&gt;Running org.vfny.geoserver.wms.requests.DescribeLayerKvpRequestReaderTest
&lt;br&gt;Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
&lt;br&gt;Running org.vfny.geoserver.wms.responses.featureinfo.FeatureTemplateTest
&lt;br&gt;Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.192 sec
&lt;br&gt;&lt;br&gt;Results :
&lt;br&gt;&lt;br&gt;Tests run: 166, Failures: 0, Errors: 0, Skipped: 0
&lt;br&gt;&lt;br&gt;[INFO] [jar:jar]
&lt;br&gt;[INFO] Building jar: &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT.jar&lt;/a&gt;&amp;gt;
&lt;br&gt;[INFO] [jar:test-jar {execution: default}]
&lt;br&gt;[INFO] Building jar: &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT-tests.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT-tests.jar&lt;/a&gt;&amp;gt;
&lt;br&gt;[INFO] Preparing source:jar
&lt;br&gt;[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
&lt;br&gt;[INFO] No goals needed for project - skipping
&lt;br&gt;[INFO] [source:jar {execution: attach-sources}]
&lt;br&gt;[INFO] Building jar: &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT-sources.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT-sources.jar&lt;/a&gt;&amp;gt;
&lt;br&gt;[INFO] [install:install]
&lt;br&gt;[INFO] Installing &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT.jar&lt;/a&gt;&amp;gt; to /home/tomcat/.m2/repository/org/geoserver/wms/2.1-SNAPSHOT/wms-2.1-SNAPSHOT.jar
&lt;br&gt;[INFO] Installing &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT-tests.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT-tests.jar&lt;/a&gt;&amp;gt; to /home/tomcat/.m2/repository/org/geoserver/wms/2.1-SNAPSHOT/wms-2.1-SNAPSHOT-tests.jar
&lt;br&gt;[INFO] Installing &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT-sources.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/wms/target/wms-2.1-SNAPSHOT-sources.jar&lt;/a&gt;&amp;gt; to /home/tomcat/.m2/repository/org/geoserver/wms/2.1-SNAPSHOT/wms-2.1-SNAPSHOT-sources.jar
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Building GeoWebCache (GWC) Module
&lt;br&gt;[INFO] &amp;nbsp; &amp;nbsp;task-segment: [clean, install]
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] [clean:clean]
&lt;br&gt;[INFO] Deleting directory &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/gwc/target&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/gwc/target&lt;/a&gt;&amp;gt;
&lt;br&gt;[INFO] [cobertura:clean {execution: default}]
&lt;br&gt;[INFO] [resources:resources]
&lt;br&gt;[INFO] Using encoding: 'UTF-8' to copy filtered resources.
&lt;br&gt;[INFO] snapshot org.geowebcache:geowebcache:1.2-SNAPSHOT: checking for updates from opengeo
&lt;br&gt;[INFO] snapshot org.geowebcache:geowebcache:1.2-SNAPSHOT: checking for updates from osgeo
&lt;br&gt;[INFO] [compiler:compile]
&lt;br&gt;[INFO] Compiling 6 source files to &amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/gwc/target/classes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/gwc/target/classes&lt;/a&gt;&amp;gt;
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[ERROR] BUILD FAILURE
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Compilation failure
&lt;br&gt;&lt;br&gt;&amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/gwc/src/main/java/org/geoserver/gwc/GWCCatalogListener.java&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/gwc/src/main/java/org/geoserver/gwc/GWCCatalogListener.java&lt;/a&gt;&amp;gt;:[62,20] cannot find symbol
&lt;br&gt;symbol &amp;nbsp;: class GWCCleanser
&lt;br&gt;location: class org.geoserver.gwc.GWCCatalogListener
&lt;br&gt;&lt;br&gt;&amp;lt;&lt;a href=&quot;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/gwc/src/main/java/org/geoserver/gwc/GWCCatalogListener.java&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.opengeo.org/hudson/job/geoserver-trunk/ws/geoserver/gwc/src/main/java/org/geoserver/gwc/GWCCatalogListener.java&lt;/a&gt;&amp;gt;:[79,12] cannot find symbol
&lt;br&gt;symbol &amp;nbsp;: class GWCCleanser
&lt;br&gt;location: class org.geoserver.gwc.GWCCatalogListener
&lt;br&gt;&lt;br&gt;&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] For more information, run Maven with the -e switch
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Total time: 3 minutes 45 seconds
&lt;br&gt;[INFO] Finished at: Fri Nov 27 07:51:40 EST 2009
&lt;br&gt;[INFO] Final Memory: 43M/116M
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;Failed to send e-mail to arneke because no e-mail address is known, and no default e-mail domain is configured
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541996&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Build-failed-in-Hudson%3A-geoserver-trunk--2140-tp26527626p26541996.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26541463</id>
	<title>Re: WCS output formats</title>
	<published>2009-11-27T03:55:49Z</published>
	<updated>2009-11-27T03:55:49Z</updated>
	<author>
		<name>Daniele Romagnoli</name>
	</author>
	<content type="html">Hi Mathew,&lt;br&gt;great to see that you have added support for EnviHdr at geotools level.&lt;br&gt;If you want to share with us your code we will take a look on it and we will include it in geotools.&lt;br&gt;About the ENVIHdr ImageWriter plugin, adding it to the imageio-ext plugins should be a feasible task in a short amount of time. If you wish to do it by yourself, I can surely provide you some guidance lines. &lt;br&gt;
&lt;br&gt;Let us know.&lt;br&gt;Best Regards,&lt;br&gt;Daniele&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 26, 2009 at 12:21 AM, Simone Giannecchini &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541463&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;simone.giannecchini@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;Let&amp;#39;s involve daniele who will be better than me in this discussion&lt;br&gt;
since he is the main responsible for the imageio-ext framework.&lt;br&gt;
Daniele, what is your feedback?&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
Simone.&lt;br&gt;
-------------------------------------------------------&lt;br&gt;
Ing. Simone Giannecchini&lt;br&gt;
GeoSolutions S.A.S.&lt;br&gt;
Founder - Software Engineer&lt;br&gt;
Via Carignoni 51&lt;br&gt;
55041  Camaiore (LU)&lt;br&gt;
Italy&lt;br&gt;
&lt;br&gt;
phone: +39 0584983027&lt;br&gt;
fax:      +39 0584983027&lt;br&gt;
mob:    +39 333 8128928&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://geo-solutions.blogspot.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://simboss.blogspot.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://simboss.blogspot.com/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.linkedin.com/in/simonegiannecchini&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/simonegiannecchini&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
-------------------------------------------------------&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;On Wed, Nov 25, 2009 at 3:34 AM, Mathew Wyatt &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541463&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mathew.Wyatt@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; Hi Simone,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I have a large amount of remote sensing data in ENVIHdr BSQ format,&lt;br&gt;
&amp;gt; that I would like to have delivered through a WCS. I have basically&lt;br&gt;
&amp;gt; just copied what you have done for the ESRIHdr files in geotools and&lt;br&gt;
&amp;gt; created an EnviHdrFormat etc. which utilizes the ENVIHdrImageReaderSpi&lt;br&gt;
&amp;gt; from imageio-ext. This appears to have made my data readable through&lt;br&gt;
&amp;gt; the WMS, WCS, as least from the small amount of testing I have done so&lt;br&gt;
&amp;gt; far. What I would like to do now is have the ENVIHdr files delivered&lt;br&gt;
&amp;gt; in their native format through the WCS.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;  From what you have said, this means that write mode functionality&lt;br&gt;
&amp;gt; will have to be added to the imageio-ext libraries for ENVIHdr files&lt;br&gt;
&amp;gt; before a CoverageResponseDelegate can be written. How long would you&lt;br&gt;
&amp;gt; think it would take to add this sort of functionality to imageio-ext?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Cheers,&lt;br&gt;
&amp;gt; Mat&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; On 25/11/2009, at 8:10 AM, Simone Giannecchini wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Ciao Matthew,&lt;br&gt;
&amp;gt;&amp;gt; EnviHDR is not supported in write mode, or at least no yet, it would&lt;br&gt;
&amp;gt;&amp;gt; be relatively easy to do that via imageio-ext.&lt;br&gt;
&amp;gt;&amp;gt; Just for the records, could please detail a bit more about what you&lt;br&gt;
&amp;gt;&amp;gt; have done geotools-wise to work with envi hdr?&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Simone.&lt;br&gt;
&amp;gt;&amp;gt; -------------------------------------------------------&lt;br&gt;
&amp;gt;&amp;gt; Ing. Simone Giannecchini&lt;br&gt;
&amp;gt;&amp;gt; GeoSolutions S.A.S.&lt;br&gt;
&amp;gt;&amp;gt; Founder - Software Engineer&lt;br&gt;
&amp;gt;&amp;gt; Via Carignoni 51&lt;br&gt;
&amp;gt;&amp;gt; 55041  Camaiore (LU)&lt;br&gt;
&amp;gt;&amp;gt; Italy&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; phone: +39 0584983027&lt;br&gt;
&amp;gt;&amp;gt; fax:      +39 0584983027&lt;br&gt;
&amp;gt;&amp;gt; mob:    +39 333 8128928&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; &lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt; &lt;a href=&quot;http://geo-solutions.blogspot.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com/&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt; &lt;a href=&quot;http://simboss.blogspot.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://simboss.blogspot.com/&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt; &lt;a href=&quot;http://www.linkedin.com/in/simonegiannecchini&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/simonegiannecchini&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; -------------------------------------------------------&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; On Tue, Nov 24, 2009 at 4:03 AM, Mathew Wyatt&lt;br&gt;
&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541463&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mathew.Wyatt@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Hi Andrea,&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Just for clarification. Is there any possibly way to have geoserver&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; wcs return the &amp;#39;nativeFormat&amp;#39; of the data in question? I have made a&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; few attempts but had no success. Looking through the geoserver&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; codebase it appears I need to write a &amp;#39;CoverageResponseDelegate&amp;#39; for&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; ENVIHdr files. Is this correct?&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Cheers,&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Mat&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; On 23/11/2009, at 4:39 PM, Andrea Aime wrote:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Mathew Wyatt ha scritto:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hi,&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I have recently been adding functionality to geotools for it to&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; support ENVI Hdr data files.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Nice! Do you plan to contribute that back to the GeoTools community?&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Getting a community module there is easy (and with some unit testing&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; and commitment it can become an official module too).&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I have managed to get the handler&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; working, and the files are viewable with the WMS, and accessible&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; through the WCS. Except:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; When I run the following WCS query, I am returned a .eml file,&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; instead&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; of a geotiff:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://localhost:8080/geoserver/wcs?service=WCS&amp;amp;request=GetCoverage&amp;amp;version=1.1.1&amp;amp;identifier=BlockAAlsmectiterelative&amp;amp;BoundingBox=235686.234,7880953.0,292701.234,7940609.5,urn:ogc:def:crs:EPSG::32754&amp;amp;format=image/geotiff&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/geoserver/wcs?service=WCS&amp;amp;request=GetCoverage&amp;amp;version=1.1.1&amp;amp;identifier=BlockAAlsmectiterelative&amp;amp;BoundingBox=235686.234,7880953.0,292701.234,7940609.5,urn:ogc:def:crs:EPSG::32754&amp;amp;format=image/geotiff&lt;/a&gt;&lt;br&gt;

&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Also, I would like geoserver to return me ENVI Hdr BSQ files -&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; possibly zipped. How would I go about adding functionality for a&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; custom output format to geoserver?&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; That is not a problem with output formats, it&amp;#39;s the WCS spec that&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; _mandates_ one to return a mime/multipart response, the xml response&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; describing the outputs is the main document and the geotiffs&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; are attachments (sounds crazy, I know).&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; If you don&amp;#39;t like that you have to use WCS 1.0 or use store=true&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; in WCS 1.1 and make two requests&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Cheers&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Andrea&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Andrea Aime&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Expert service straight from the developers.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Mathew Wyatt&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Software Engineer, CSIRO Exploration and Mining&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; AARC (Australian Resources Research Centre)&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; 26 Dick Perry Ave, Kensington WA 6151, Australia&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; 2008 30-Day&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment -&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; and focus on&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Geoserver-devel mailing list&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541463&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; --&lt;br&gt;
&amp;gt; Mathew Wyatt&lt;br&gt;
&amp;gt; Software Engineer, CSIRO Exploration and Mining&lt;br&gt;
&amp;gt; AARC (Australian Resources Research Centre)&lt;br&gt;
&amp;gt; 26 Dick Perry Ave, Kensington WA 6151, Australia&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; ------------------------------------------------------------------------------&lt;br&gt;
&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
&amp;gt; trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
&amp;gt; what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt; Geoserver-devel mailing list&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541463&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;-------------------------------------------------------&lt;br&gt;Eng. Daniele Romagnoli &lt;br&gt;Software Engineer&lt;br&gt;&lt;br&gt;GeoSolutions S.A.S.&lt;br&gt;Via Carignoni 51&lt;br&gt;55041 Camaiore (LU)&lt;br&gt;
Italy&lt;br&gt;&lt;br&gt;phone: +39 0584983027&lt;br&gt;fax:     +39 0584983027&lt;br&gt;mob:   +39 328 0559267&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------&lt;br&gt;
&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541463&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/WCS-output-formats-tp26474268p26541463.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26541345</id>
	<title>[jira] Created: (GEOS-3676) SchemaLocations on the WFS output header are invalid</title>
	<published>2009-11-27T03:44:55Z</published>
	<updated>2009-11-27T03:44:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">SchemaLocations on the WFS output header are invalid
&lt;br&gt;----------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: GEOS-3676
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/GEOS-3676&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/GEOS-3676&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: GeoServer
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: WFS
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: 2.1.x
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Rini Angreani
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Andrea Aime
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Critical
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: 2.0.0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Attachments: SISS-510.patch
&lt;br&gt;&lt;br&gt;On WFS output, the schema locations encoded on the header are describeFeatureType URL for that type eg.
&lt;br&gt;&lt;br&gt;&amp;lt;wfs:FeatureCollection &amp;nbsp;
&lt;br&gt;...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xsi:schemaLocation=&amp;quot;urn:cgi:xmlns:CGI:GeoSciML:2.0 &lt;a href=&quot;http://d00109:8082/geoserver-ws-0.1/wfs?service=WFS&amp;amp;version=1.1.0&amp;amp;request=DescribeFeatureType&amp;amp;typeName=gsml:MappedFeature&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://d00109:8082/geoserver-ws-0.1/wfs?service=WFS&amp;amp;version=1.1.0&amp;amp;request=DescribeFeatureType&amp;amp;typeName=gsml:MappedFeature&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.opengis.net/wfs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.opengis.net/wfs&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://d00109:8082/geoserver-ws-0.1/schemas/wfs/1.1.0/wfs.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://d00109:8082/geoserver-ws-0.1/schemas/wfs/1.1.0/wfs.xsd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;Users have been complaining that these schema locations wouldn't validate on XML editors (in particular XMLSpy), stopping them from doing further work.
&lt;br&gt;&lt;br&gt;Users can now supply schemaLocation in their app-schema mapping file eg.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;targetTypes&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;FeatureType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;schemaUri&amp;gt;&lt;a href=&quot;http://schemas.opengis.net/GeoSciML/geosciml.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://schemas.opengis.net/GeoSciML/geosciml.xsd&lt;/a&gt;&amp;lt;/schemaUri&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/FeatureType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/targetTypes&amp;gt;
&lt;br&gt;The patch I attached fixes the schema location to encode to the provided schema URI, if there is one. Otherwise it'll encode the describeFeatureType URL by default.
&lt;br&gt;&lt;br&gt;Test covered in updated FeatureChainingWFSTest as well. 
&lt;br&gt;&lt;br&gt;On the side note, the WFS schema location relates back to the host and that if the application is deployed on a separate machine, they won't be able to access the schema, eg. 
&lt;br&gt;&amp;quot;&lt;a href=&quot;http://d00109:8082/geoserver-ws-0.1/schemas/wfs/1.1.0/wfs.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://d00109:8082/geoserver-ws-0.1/schemas/wfs/1.1.0/wfs.xsd&lt;/a&gt;&amp;quot;
&lt;br&gt;But I'm going to raise a different issue for that one and address it later. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541345&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28GEOS-3676%29-SchemaLocations-on-the-WFS-output-header-are-invalid-tp26541345p26541345.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26541331</id>
	<title>Re: [Geoserver-users] GDAL GeoTiff plugin [WAS: Re: raster getFeatureInfo...]</title>
	<published>2009-11-27T03:43:12Z</published>
	<updated>2009-11-27T03:43:12Z</updated>
	<author>
		<name>Simone Giannecchini</name>
	</author>
	<content type="html">Ciao Jean,
&lt;br&gt;I have opened up a jira for this:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://jira.codehaus.org/browse/GEOT-2864&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/GEOT-2864&lt;/a&gt;&lt;br&gt;&lt;br&gt;However this does not mean that we (as in the geotools/geoserver
&lt;br&gt;project) are going to add this functionality right away, unless
&lt;br&gt;someone provide funding/workforce.
&lt;br&gt;Besides it would be nice if you caould attach some sample data to this
&lt;br&gt;task, even using same fake geotiff.
&lt;br&gt;&lt;br&gt;What do you think?
&lt;br&gt;&lt;br&gt;Simone.
&lt;br&gt;-------------------------------------------------------
&lt;br&gt;Ing. Simone Giannecchini
&lt;br&gt;GeoSolutions S.A.S.
&lt;br&gt;Founder - Software Engineer
&lt;br&gt;Via Carignoni 51
&lt;br&gt;55041 &amp;nbsp;Camaiore (LU)
&lt;br&gt;Italy
&lt;br&gt;&lt;br&gt;phone: +39 0584983027
&lt;br&gt;fax: &amp;nbsp; &amp;nbsp; &amp;nbsp;+39 0584983027
&lt;br&gt;mob: &amp;nbsp; &amp;nbsp;+39 333 8128928
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://geo-solutions.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://simboss.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://simboss.blogspot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.linkedin.com/in/simonegiannecchini&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/simonegiannecchini&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 9:51 AM, Jean Pommier (IGE) &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541331&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jean.pommier@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Simone,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks. It would be great !
&lt;br&gt;&amp;gt; I think, too, it would be nice to give the users the choice between the 2
&lt;br&gt;&amp;gt; versions : the current GeoTiff support being the basis, and the other one an
&lt;br&gt;&amp;gt; advanced GeoTiff support ?
&lt;br&gt;&amp;gt; I've never digged in GeoServer code, so I don't think I could help this way,
&lt;br&gt;&amp;gt; but I could help for the documentation !
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jean
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009/11/25 Andrea Aime &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541331&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Simone Giannecchini ha scritto:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Ciao Jean,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I am not sure which version of ArcGIS you are using, but looks like it
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; is the one that relies on GDAL itself :-).
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Gdal should allow you (us?) to elploit such geotiff, I am not so sure
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; about ways to convert it with GDAL to something that GeoServer can
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; exploit directly, like a multiband geotiff.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I guess that the best thing would probably be to start including the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; GDAL geotiff plugin as part of GeoTools so that we could optionally
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; use it in GeoServer to server geotiff as well, this should not be too
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; much work using the gdal extensions, but I suspect it would not even
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; be 1h work.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Anyway, the reason that I have been excluding geotiff support from the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; GDAL extension has been that so far we have been quite able to do what
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; we needed with the java version therefore I did not like the idea of
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; mixing the two (and there also implications with the need for having
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; native libs around, which is always a pain). Now with the support for
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; statistics and RAT tables, I start to see the need for supporting GDAL
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; geotiff directly. I am cc'ing the devel list to get some feedback from
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; other developers.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I would not be against having the option, we just need to document
&lt;br&gt;&amp;gt;&amp;gt; well the pros and cons of each choice
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt;&amp;gt; Andrea
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Andrea Aime
&lt;br&gt;&amp;gt;&amp;gt; OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Expert service straight from the developers.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Geoserver-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541331&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541331&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---Dev-f1195.html&quot; embed=&quot;fixTarget[1195]&quot; target=&quot;_top&quot; &gt;GeoServer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GDAL-GeoTiff-plugin--WAS%3A-Re%3A--Geoserver-users--raster-getFeatureInfo...--tp26510794p26541331.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26541334</id>
	<title>Re: [Geoserver-devel] GDAL GeoTiff plugin [WAS: Re: raster getFeatureInfo...]</title>
	<published>2009-11-27T03:43:12Z</published>
	<updated>2009-11-27T03:43:12Z</updated>
	<author>
		<name>Simone Giannecchini</name>
	</author>
	<content type="html">Ciao Jean,
&lt;br&gt;I have opened up a jira for this:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://jira.codehaus.org/browse/GEOT-2864&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/GEOT-2864&lt;/a&gt;&lt;br&gt;&lt;br&gt;However this does not mean that we (as in the geotools/geoserver
&lt;br&gt;project) are going to add this functionality right away, unless
&lt;br&gt;someone provide funding/workforce.
&lt;br&gt;Besides it would be nice if you caould attach some sample data to this
&lt;br&gt;task, even using same fake geotiff.
&lt;br&gt;&lt;br&gt;What do you think?
&lt;br&gt;&lt;br&gt;Simone.
&lt;br&gt;-------------------------------------------------------
&lt;br&gt;Ing. Simone Giannecchini
&lt;br&gt;GeoSolutions S.A.S.
&lt;br&gt;Founder - Software Engineer
&lt;br&gt;Via Carignoni 51
&lt;br&gt;55041 &amp;nbsp;Camaiore (LU)
&lt;br&gt;Italy
&lt;br&gt;&lt;br&gt;phone: +39 0584983027
&lt;br&gt;fax: &amp;nbsp; &amp;nbsp; &amp;nbsp;+39 0584983027
&lt;br&gt;mob: &amp;nbsp; &amp;nbsp;+39 333 8128928
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://geo-solutions.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://simboss.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://simboss.blogspot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.linkedin.com/in/simonegiannecchini&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/simonegiannecchini&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 9:51 AM, Jean Pommier (IGE) &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541334&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jean.pommier@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Simone,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks. It would be great !
&lt;br&gt;&amp;gt; I think, too, it would be nice to give the users the choice between the 2
&lt;br&gt;&amp;gt; versions : the current GeoTiff support being the basis, and the other one an
&lt;br&gt;&amp;gt; advanced GeoTiff support ?
&lt;br&gt;&amp;gt; I've never digged in GeoServer code, so I don't think I could help this way,
&lt;br&gt;&amp;gt; but I could help for the documentation !
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jean
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009/11/25 Andrea Aime &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541334&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aaime@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Simone Giannecchini ha scritto:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Ciao Jean,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I am not sure which version of ArcGIS you are using, but looks like it
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; is the one that relies on GDAL itself :-).
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Gdal should allow you (us?) to elploit such geotiff, I am not so sure
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; about ways to convert it with GDAL to something that GeoServer can
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; exploit directly, like a multiband geotiff.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I guess that the best thing would probably be to start including the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; GDAL geotiff plugin as part of GeoTools so that we could optionally
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; use it in GeoServer to server geotiff as well, this should not be too
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; much work using the gdal extensions, but I suspect it would not even
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; be 1h work.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Anyway, the reason that I have been excluding geotiff support from the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; GDAL extension has been that so far we have been quite able to do what
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; we needed with the java version therefore I did not like the idea of
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; mixing the two (and there also implications with the need for having
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; native libs around, which is always a pain). Now with the support for
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; statistics and RAT tables, I start to see the need for supporting GDAL
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; geotiff directly. I am cc'ing the devel list to get some feedback from
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; other developers.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I would not be against having the option, we just need to document
&lt;br&gt;&amp;gt;&amp;gt; well the pros and cons of each choice
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt;&amp;gt; Andrea
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Andrea Aime
&lt;br&gt;&amp;gt;&amp;gt; OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Expert service straight from the developers.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Geoserver-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541334&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541334&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GDAL-GeoTiff-plugin--WAS%3A-Re%3A-raster-getFeatureInfo...--tp26510802p26541334.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26541302</id>
	<title>Re: Permissions to add/edit pages on GeoServer Wiki</title>
	<published>2009-11-27T03:39:32Z</published>
	<updated>2009-11-27T03:39:32Z</updated>
	<author>
		<name>afabiani</name>
	</author>
	<content type="html">Yes it works now, many thanks.&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;-------------------------------------------------------&lt;br&gt;Eng. Alessio Fabiani&lt;br&gt;Founder / CTO GeoSolutions S.A.S.&lt;br&gt;Via Carignoni 51&lt;br&gt;55041  Camaiore (LU)&lt;br&gt;Italy&lt;br&gt;
&lt;br&gt;phone: +39 0584 980933&lt;br&gt;fax:      +39 0584 983027&lt;br&gt;mob:    +39 349 8227000&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://geo-solutions.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com&lt;/a&gt;&lt;br&gt;
-------------------------------------------------------&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 27, 2009 at 12:34 PM, Arne Kepp &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541302&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ak@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
Linked to the outcry about spam in confluence last week, I changed the permissions so that the bots wouldnt start editing normal pages.&lt;br&gt;
&lt;br&gt;
I&amp;#39;ve added another group, confirmed-users, and I&amp;#39;ve added you to it now. Anyone else who is not already an admin will have to be added to this group as well.&lt;br&gt;
&lt;br&gt;
-Arne&lt;br&gt;
&lt;br&gt;
ps. Please consider adding your documentation to Sphinx instead. We would very much like to get away from Confluence.&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Alessio Fabiani wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&quot;&gt;
Hi guys,&lt;br&gt;
&lt;br&gt;
I would like to update/add some documentation to the GeoServer wiki but actually I don&amp;#39;t have permissions to do that ... Who should I ping in order to ask writing rights?&lt;br&gt;
&lt;br&gt;
My user is afabiani&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
         Alessio.&lt;br&gt;
&lt;br&gt;
-------------------------------------------------------&lt;br&gt;
Eng. Alessio Fabiani&lt;br&gt;
Founder / CTO GeoSolutions S.A.S.&lt;br&gt;
Via Carignoni 51&lt;br&gt;
55041  Camaiore (LU)&lt;br&gt;
Italy&lt;br&gt;
&lt;br&gt;
phone: +39 0584 980933&lt;br&gt;
fax:      +39 0584 983027&lt;br&gt;
mob:    +39 349 8227000&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://geo-solutions.blogspot.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com&lt;/a&gt;&lt;br&gt;
-------------------------------------------------------&lt;br&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;br&gt;&lt;/div&gt;&lt;/div&gt;
-- &lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;
Arne Kepp&lt;/font&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;
Expert service straight from the developers&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541302&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Permissions-to-add-edit-pages-on-GeoServer-Wiki-tp26541093p26541302.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26541239</id>
	<title>Re: Permissions to add/edit pages on GeoServer Wiki</title>
	<published>2009-11-27T03:34:15Z</published>
	<updated>2009-11-27T03:34:15Z</updated>
	<author>
		<name>Arne Kepp</name>
	</author>
	<content type="html">Linked to the outcry about spam in confluence last week, I changed the 
&lt;br&gt;permissions so that the bots wouldnt start editing normal pages.
&lt;br&gt;&lt;br&gt;I've added another group, confirmed-users, and I've added you to it now. 
&lt;br&gt;Anyone else who is not already an admin will have to be added to this 
&lt;br&gt;group as well.
&lt;br&gt;&lt;br&gt;-Arne
&lt;br&gt;&lt;br&gt;ps. Please consider adding your documentation to Sphinx instead. We 
&lt;br&gt;would very much like to get away from Confluence.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Alessio Fabiani wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I would like to update/add some documentation to the GeoServer wiki 
&lt;br&gt;&amp;gt; but actually I don't have permissions to do that ... Who should I ping 
&lt;br&gt;&amp;gt; in order to ask writing rights?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My user is afabiani
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Alessio.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------
&lt;br&gt;&amp;gt; Eng. Alessio Fabiani
&lt;br&gt;&amp;gt; Founder / CTO GeoSolutions S.A.S.
&lt;br&gt;&amp;gt; Via Carignoni 51
&lt;br&gt;&amp;gt; 55041 &amp;nbsp;Camaiore (LU)
&lt;br&gt;&amp;gt; Italy
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; phone: +39 0584 980933
&lt;br&gt;&amp;gt; fax: &amp;nbsp; &amp;nbsp; &amp;nbsp;+39 0584 983027
&lt;br&gt;&amp;gt; mob: &amp;nbsp; &amp;nbsp;+39 349 8227000
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.geo-solutions.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.geo-solutions.it&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://geo-solutions.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geo-solutions.blogspot.com&lt;/a&gt;&lt;br&gt;&amp;gt; -------------------------------------------------------
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Arne Kepp
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Geoserver-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26541239&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geoserver-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/geoserver-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/geoserver-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/GeoServer---User-f1194.html&quot; embed=&quot;fixTarget[1194]&quot; target=&quot;_top&quot; &gt;GeoServer - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Permissions-to-add-edit-pages-on-GeoServer-Wiki-tp26541093p26541239.html" />
</entry>

</feed>
