Re: [JPP-Devel] [jump-pilot:bugs] #484 WMS Authentification fails

2019-02-21 Thread Michaël Michaud
Ede ... I think I see your first idea. Maybe it would be better to solve the problem out of WMService, in a dedicated Connection manager responsible for security management and used by every service needing HttpsURLConnection. Michaël Le 21/02/2019 à 10:41, edgar.sol...@web.de a écrit : On

[JPP-Devel] SVN: [6135] core/trunk/src/com/vividsolutions/jump/workbench/ui/plugin/wms /EditWMSQueryPanel.java

2019-02-21 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6135 http://sourceforge.net/p/jump-pilot/code/6135 Author: michaudm Date: 2019-02-22 07:37:50 + (Fri, 22 Feb 2019) Log Message: --- Fix bad error management introduced in last commit (one more) Modified Paths: -- core/trunk/src/com/vividsoluti

[JPP-Devel] SVN: [6134] core/trunk/src

2019-02-21 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6134 http://sourceforge.net/p/jump-pilot/code/6134 Author: michaudm Date: 2019-02-22 07:35:16 + (Fri, 22 Feb 2019) Log Message: --- Fix bad error management introduced in last commit Modified Paths: -- core/trunk/src/com/vividsolutions/jump/wor

Re: [JPP-Devel] [jump-pilot:bugs] #484 WMS Authentification fails

2019-02-21 Thread Michaël Michaud
ok, had a look at your addition. 1. firstly, you add new thrown exceptions all over the place. this changes the methods signatures (bad). try to wrap it into the existing exception definition like "new IOException(e);" Good idea, I'll change that. 2. private void setTrustOption(boolean tru

Re: [JPP-Devel] Metric distances for lat long coordinates

2019-02-21 Thread Giuseppe Aruta
No problem Nicolas, There are still so many features I discover on OJ. Sorry for my short sintetic answer due to lack of PC in this moment. Not sure if I already integrated the source code of measure plugin into OJ svn. When I worked on that plugin I tried to detailed the origin of the algorithms,

Re: [JPP-Devel] Metric distances for lat long coordinates

2019-02-21 Thread Nicolas Ribot
Hi Giuseppe, Yes exactly what I needed ! Thanks, I was about reinventing the wheel ;) (so many features I don't know of in OJ...) Nicolas On Thu, 21 Feb 2019 at 17:42, Giuseppe Aruta wrote: > There is also a plugin already integrated into OJ that can measure > distance/ area in lat/lon. (Epsg

Re: [JPP-Devel] Metric distances for lat long coordinates

2019-02-21 Thread Giuseppe Aruta
There is also a plugin already integrated into OJ that can measure distance/ area in lat/lon. (Epsg 4326). See Measure toolbox under Plugin menu. Il mer 20 feb 2019, 15:55 Paul J. Morris ha scritto: > On Wed, 20 Feb 2019 10:20:14 +0100 > Nicolas Ribot wrote: > > > Hi, > > > > > > > > Sounds us

Re: [JPP-Devel] Slow parsing of date field from Spatialite database

2019-02-21 Thread Nicolas Ribot
Hello, I will have a look at it and make some tests. Nicolas On Wed, 20 Feb 2019 at 17:14, wrote: > hmmm > > GeometryColumn gc = dsm.getGeometryColumn(query.getDatasetName(), > query.getGeometryAttributeName()); > if (gc.isIndexed()) { > > gc is return as Null here. dunno why, but Nico

Re: [JPP-Devel] [jump-pilot:bugs] #484 WMS Authentification fails

2019-02-21 Thread edgar . soldin
On 21.02.2019 08:39, michael michaud wrote: > OK, I started the change. I added a dialog in WMService to make it possible > to accept or reject the connection to an url with uncertified authority. > The main problem was to not break project loading when the project contains > such WMSLayers. You