[Geotools-devel] [JIRA] (GEOT-5128) replace gt-wfs module with gt-wfs-ng

2015-05-25 Thread Jody Garnett [Administrator] (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jody Garnett [Administrator] created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 GeoTools /  GEOT-5128 
 
 
 
  replace gt-wfs module with gt-wfs-ng  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 14-beta 
 
 
 

Assignee:
 
 Jody Garnett [Administrator] 
 
 
 

Components:
 

 WFS, wfs plugin 
 
 
 

Created:
 

 25/May/15 7:34 PM 
 
 
 

Priority:
 
  Medium 
 
 
 

Reporter:
 
 Jody Garnett [Administrator] 
 
 
 
 
 
 
 
 
 
 
Remove the gt-wfs module based on AbstractDataStore now that gt-wfs-ng is available as a "drop-in" replacement. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

[Geotools-devel] remove gt-wfs plugin

2015-05-25 Thread Jody Garnett
The wfs-ng plugin is now a suitable replacement.

Links:

* https://osgeo-org.atlassian.net/browse/GEOT-5128
* https://github.com/geotools/geotools/pull/856

Any feedback?
--
Jody Garnett
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


Re: [Geotools-devel] remove gt-wfs plugin

2015-05-25 Thread Andrea Aime
On Mon, May 25, 2015 at 7:49 PM, Jody Garnett 
wrote:

> The wfs-ng plugin is now a suitable replacement.
>
> Links:
>
> * https://osgeo-org.atlassian.net/browse/GEOT-5128
> * https://github.com/geotools/geotools/pull/856
>
> Any feedback?
>

Never managed to test wfs-ng against mapserver and tinyows installations
here in Italy,
the old wfs was working (added a lots of settings to handle their
brokenness), the new one, who knows... could
you keep it around a bit more please?

Cheers
Andrea

-- 
==
Meet us at the INSPIRE Conference in Lisbon 25-29 May 2015! Visit
http://goo.gl/WHKDXT for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

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

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

*AVVERTENZE AI SENSI DEL D.Lgs. 196/2003*

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



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

---
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


[Geotools-devel] [JIRA] (GEOT-5129) Make Transaction AutoClosable

2015-05-25 Thread Jody Garnett [Administrator] (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jody Garnett [Administrator] created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 GeoTools /  GEOT-5129 
 
 
 
  Make Transaction AutoClosable  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Components:
 

 main 
 
 
 

Created:
 

 25/May/15 9:41 PM 
 
 
 

Priority:
 
  Medium 
 
 
 

Reporter:
 
 Jody Garnett [Administrator] 
 
 
 
 
 
 
 
 
 
 
Changing to: 

 

interface Transaction extrends Closable {
   ...
   void close() throws IOException;
}
 

 
Does not result in an API change as our close() method already throws an IOException. 
This change allows the use of transaction in a try-with-resources block: 

 

try( Transaction t = new DefaultTransaction() ){
store.setTransaction(t);
...
}
 

 
This change makes GeoTools easier to use, and allows us to quickly fix test cases such as wfs-ng GeoServerIntegrationTests. 
 
 
 
 
 
 
 
 
 
   

[Geotools-devel] Reminder: GeoTools / GeoServer Meeting at 19:30 UTC on Tuesday

2015-05-25 Thread Ben Caradoc-Davies
GeoTools / GeoServer committee meeting on Skype at 19:30 UTC on Tuesday:
http://www.timeanddate.com/worldclock/fixedtime.html?msg=GeoTools+%2F+GeoServer+Meeting&year=2015&month=5&day=26&hour=19&min=30&sec=0&ah=1

-- 
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


[Geotools-devel] Build failed in Jenkins: geotools-master #706

2015-05-25 Thread monitor
See 

Changes:

[jody.garnett] change to atlassian

--
[...truncated 17382 lines...]
Running org.geotools.wps.bindings.ComplexDataTypeBindingTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.404 sec - in 
org.geotools.wps.bindings.ComplexDataTypeBindingTest
Running org.geotools.wps.bindings.ExecuteBindingTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.072 sec - in 
org.geotools.wps.bindings.ExecuteBindingTest
Running org.geotools.wps.bindings.LanguagesBindingTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec - in 
org.geotools.wps.bindings.LanguagesBindingTest

Results :

Tests run: 13, Failures: 0, Errors: 0, Skipped: 0

[INFO] 
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ gt-xsd-wps ---
[INFO] Building jar: 

[INFO] 
[INFO] >>> maven-source-plugin:2.2.1:jar (attach-sources) @ gt-xsd-wps >>>
[INFO] 
[INFO] --- git-commit-id-plugin:2.1.2:revision (default) @ gt-xsd-wps ---
[INFO] 
[INFO] <<< maven-source-plugin:2.2.1:jar (attach-sources) @ gt-xsd-wps <<<
[INFO] 
[INFO] --- maven-source-plugin:2.2.1:jar (attach-sources) @ gt-xsd-wps ---
[INFO] Building jar: 

[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ gt-xsd-wps ---
[INFO] Installing 

 to 
/var/lib/jenkins/.m2/repository/org/geotools/xsd/gt-xsd-wps/14-SNAPSHOT/gt-xsd-wps-14-SNAPSHOT.jar
[INFO] Installing 

 to 
/var/lib/jenkins/.m2/repository/org/geotools/xsd/gt-xsd-wps/14-SNAPSHOT/gt-xsd-wps-14-SNAPSHOT.pom
[INFO] Installing 

 to 
/var/lib/jenkins/.m2/repository/org/geotools/xsd/gt-xsd-wps/14-SNAPSHOT/gt-xsd-wps-14-SNAPSHOT-sources.jar
Tests run: 3, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 60.13 sec <<< 
FAILURE! - in org.geotools.xml.SchemaFactoryResolveTest
testRemotePathResolve(org.geotools.xml.SchemaFactoryResolveTest)  Time elapsed: 
60.074 sec  <<< ERROR!
java.lang.RuntimeException: Error downloading location: 
http://www.w3.org/2001/03/xml.xsd
at java.net.PlainSocketImpl.socketConnect(Native Method)
at 
java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)
at 
java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
at 
java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:579)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527)
at sun.net.www.http.HttpClient.(HttpClient.java:211)
at sun.net.www.http.HttpClient.New(HttpClient.java:308)
at sun.net.www.http.HttpClient.New(HttpClient.java:326)
at 
sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:996)
at 
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932)
at 
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:850)
at org.geotools.xml.resolver.SchemaCache.download(SchemaCache.java:268)
at org.geotools.xml.resolver.SchemaCache.download(SchemaCache.java:246)
at org.geotools.xml.resolver.SchemaCache.download(SchemaCache.java:236)
at 
org.geotools.xml.resolver.SchemaCache.resolveLocation(SchemaCache.java:350)
at 
org.geotools.xml.resolver.SchemaResolver.resolve(SchemaResolver.java:203)
at org.geotools.xml.SchemaFactory.resolveSchema(SchemaFactory.java:372)
at 
org.geotools.xml.SchemaFactory.getRealInstance(SchemaFactory.java:323)
at org.geotools.xml.SchemaFactory.getInstance(SchemaFactory.java:309)
at org.geotools.xml.SchemaFactory.getInstance(SchemaFactory.java:224)
at 
org.geotools.xml.SchemaFactoryResolveTest.testRemotePathResolve(SchemaFactoryResolveTest.java:85)

Running org.geotools.xml.SchemaMergeTest
org.geotools.xml.handlers.xsi.SchemaHandler$DefaultSchema@13084eb3
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec - in 
org.geotools.xml.SchemaMergeTest
Running org.geotools.xml.SchemaParser2Test
org.geotools.xml.handlers.xsi.SchemaHandler$DefaultSchema@791cc8c
org.geotools.xml.gml.GMLSchema