Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-14 Thread edgar . soldin
On 14.07.2011 16:57, Michaël Michaud wrote:
> Packaging a windows version is a bit of extra work. I don't use the 
> installer nor the .exe, even if I'm a windows user, but I think this is 
> useful for a better adoption of OpenJUMP. I would be pleased to study 
> multiplatform installers like IzPack which I used in the past, but this 
> is not my priority for now.

i'd say it is your decision whether you create a setup or not for a bugfix 
release, since it is you doing the work ;) .. as oj is a extract and run 
application, i see no real need for a setup. Doesn't the exe even complain if 
there is no jre available?

ede

--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on "Lean Startup 
Secrets Revealed." This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-14 Thread Michaël Michaud
Hi Ede,

>> I've modified it but I've not yet committed,
Done, but will need more check.
> we talked about a new version scheme and maybe now it is the time to do so. 
> How about three number only
> ..
> major is changed when really big changes occur, e.g. backward compatibility 
> breaks, oj runs on android or such
> minor are regular functionality changes
> patch is bugfixes
>
> that should be sufficient for our use case.
Agree, so I switch to 1.4.2, and I'll try to make a fix release soon 
(this month). In the meantime, I keep snapshot extension for NB jar file 
name (pom.xml) and alpha or beta extension in the code (JUMPVersion, 
jump.properties and build.xml) so that jar files compiled between two 
releases can be distinguished from official releases.
> windows setup:
>
> as fancy as it is. is it worth the extra effort, necessary for every release 
> (can we automate that?)? what are the benefits? windows users can as well use 
> the multiplatform distro.
Packaging a windows version is a bit of extra work. I don't use the 
installer nor the .exe, even if I'm a windows user, but I think this is 
useful for a better adoption of OpenJUMP. I would be pleased to study 
multiplatform installers like IzPack which I used in the past, but this 
is not my priority for now.

Michaël
> ede
>
>>
> also. isn't there a wildcard adding possible with ant, preventing this 
> for the future?
 Yes, it is even possible to include all but one package (there is a
 jumptest subfolder in src which may not have its place in distribution)
>>> +1 let's rather exclude than cherrypick includes.
>>>
>>> :) ede
>>>
>>>
 Michaël
> ..ede
>
> On 13.07.2011 21:16, Michaël Michaud wrote:
>> Hi,
>>
>> I'm sorry that net package misses in 1.4.1.
>> Unfortunately, it has not been added to the ant build file after Ede
>> replaced old sun classes by these free ones, and I did not notice it
>> because it seems it does not prevent to connect to wms url as long as it
>> is not secured url.
>> Not sure how NB is compiled. Using maven I think.
>>
>> I'll fix this to night and let you know.
>>
>> Michaël
>>
>> Le 13/07/2011 10:51, edgar.sol...@web.de a écrit :
>>> On 13.07.2011 10:41, Rahkonen Jukka wrote:
 Hi,

 I tested WMS basic authentication for Ede some time ago and it did 
 work then with the nightly build that Ede showed me.  However, it 
 looks like something went wrong with the OJ 1.4.1 release.
 When trying to connect with WMS url like 
 "https://username:password@server..."; the result is this error:

 java.lang.NoClassDefFoundError: net/iharder/Base64
>>> right, the new base64 encoder component is missing in 
>>> openjump-workbench-1.4.1.jar or openjump-api-1.4.1.jar. You can 
>>> workaround by replacing the above files with the nightly build 
>>> openjump-core-1.4.1-SNAPSHOT.jar which contains it plus the contents of 
>>> the other two jars.
>>>
>>> Michael how comes it did not end up in the release :)?
>>>
>>> ede
>>>
>>> --
>>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>>> Secrets Revealed." This video shows you how to validate your ideas,
>>> optimize your ideas and identify your business strategy.
>>> http://p.sf.net/sfu/appsumosfdev2dev
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>> --
>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>> Secrets Revealed." This video shows you how to validate your ideas,
>> optimize your ideas and identify your business strategy.
>> http://p.sf.net/sfu/appsumosfdev2dev
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> --
> AppSumo Presents a FREE Video for the SourceForge Community by Eric
> Ries, the creator of the Lean Startup Methodology on "Lean Startup
> Secrets Revealed." This video shows you how to validate your ideas,
> optimize your ideas and identify your business strategy.
> http://p.sf.net/sfu/appsumosfdev2dev
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourcef

Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-14 Thread edgar . soldin
On 14.07.2011 13:03, Michaël Michaud wrote:
> Hi,
>> i see only xml files in trunk that seem to organize the nightly build. where 
>> are the ant build files located?
> ant build file is in the etc directory.
> I've modified it but I've not yet committed,

ok thanks

> I think I will switch the code to 1.4.2alpha today, not make an official 
> release of a patched 1.4.1 release (patched code will be available in NB 
> as 1.4.2-snapshot) and try to release 1.4.2 within a few months.
> 
> Any thought about this schedule ?

i actually think wms auth is important and should be fixed right away. we could 
wait for one or two weeks if more urgent bugs occur but release the fixed 
version then.

versioning:

we talked about a new version scheme and maybe now it is the time to do so. How 
about three number only
..
major is changed when really big changes occur, e.g. backward compatibility 
breaks, oj runs on android or such
minor are regular functionality changes
patch is bugfixes

that should be sufficient for our use case.

windows setup:

as fancy as it is. is it worth the extra effort, necessary for every release 
(can we automate that?)? what are the benefits? windows users can as well use 
the multiplatform distro.

ede

> 
> 
 also. isn't there a wildcard adding possible with ant, preventing this for 
 the future?
>>> Yes, it is even possible to include all but one package (there is a
>>> jumptest subfolder in src which may not have its place in distribution)
>> +1 let's rather exclude than cherrypick includes.
>>
>> :) ede
>>
>>
>>> Michaël
 ..ede

 On 13.07.2011 21:16, Michaël Michaud wrote:
> Hi,
>
> I'm sorry that net package misses in 1.4.1.
> Unfortunately, it has not been added to the ant build file after Ede
> replaced old sun classes by these free ones, and I did not notice it
> because it seems it does not prevent to connect to wms url as long as it
> is not secured url.
> Not sure how NB is compiled. Using maven I think.
>
> I'll fix this to night and let you know.
>
> Michaël
>
> Le 13/07/2011 10:51, edgar.sol...@web.de a écrit :
>> On 13.07.2011 10:41, Rahkonen Jukka wrote:
>>> Hi,
>>>
>>> I tested WMS basic authentication for Ede some time ago and it did work 
>>> then with the nightly build that Ede showed me.  However, it looks like 
>>> something went wrong with the OJ 1.4.1 release.
>>> When trying to connect with WMS url like 
>>> "https://username:password@server..."; the result is this error:
>>>
>>> java.lang.NoClassDefFoundError: net/iharder/Base64
>> right, the new base64 encoder component is missing in 
>> openjump-workbench-1.4.1.jar or openjump-api-1.4.1.jar. You can 
>> workaround by replacing the above files with the nightly build 
>> openjump-core-1.4.1-SNAPSHOT.jar which contains it plus the contents of 
>> the other two jars.
>>
>> Michael how comes it did not end up in the release :)?
>>
>> ede
>>
>> --
>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>> Secrets Revealed." This video shows you how to validate your ideas,
>> optimize your ideas and identify your business strategy.
>> http://p.sf.net/sfu/appsumosfdev2dev
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
> --
> AppSumo Presents a FREE Video for the SourceForge Community by Eric
> Ries, the creator of the Lean Startup Methodology on "Lean Startup
> Secrets Revealed." This video shows you how to validate your ideas,
> optimize your ideas and identify your business strategy.
> http://p.sf.net/sfu/appsumosfdev2dev
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
 --
 AppSumo Presents a FREE Video for the SourceForge Community by Eric
 Ries, the creator of the Lean Startup Methodology on "Lean Startup
 Secrets Revealed." This video shows you how to validate your ideas,
 optimize your ideas and identify your business strategy.
 http://p.sf.net/sfu/appsumosfdev2dev
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


>>>
>>> --
>>> A

Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-14 Thread Michaël Michaud
Hi,
> i see only xml files in trunk that seem to organize the nightly build. where 
> are the ant build files located?
ant build file is in the etc directory.
I've modified it but I've not yet committed,
I think I will switch the code to 1.4.2alpha today, not make an official 
release of a patched 1.4.1 release (patched code will be available in NB 
as 1.4.2-snapshot) and try to release 1.4.2 within a few months.

Any thought about this schedule ?

Michaël


>>> also. isn't there a wildcard adding possible with ant, preventing this for 
>>> the future?
>> Yes, it is even possible to include all but one package (there is a
>> jumptest subfolder in src which may not have its place in distribution)
> +1 let's rather exclude than cherrypick includes.
>
> :) ede
>
>
>> Michaël
>>> ..ede
>>>
>>> On 13.07.2011 21:16, Michaël Michaud wrote:
 Hi,

 I'm sorry that net package misses in 1.4.1.
 Unfortunately, it has not been added to the ant build file after Ede
 replaced old sun classes by these free ones, and I did not notice it
 because it seems it does not prevent to connect to wms url as long as it
 is not secured url.
 Not sure how NB is compiled. Using maven I think.

 I'll fix this to night and let you know.

 Michaël

 Le 13/07/2011 10:51, edgar.sol...@web.de a écrit :
> On 13.07.2011 10:41, Rahkonen Jukka wrote:
>> Hi,
>>
>> I tested WMS basic authentication for Ede some time ago and it did work 
>> then with the nightly build that Ede showed me.  However, it looks like 
>> something went wrong with the OJ 1.4.1 release.
>> When trying to connect with WMS url like 
>> "https://username:password@server..."; the result is this error:
>>
>> java.lang.NoClassDefFoundError: net/iharder/Base64
> right, the new base64 encoder component is missing in 
> openjump-workbench-1.4.1.jar or openjump-api-1.4.1.jar. You can 
> workaround by replacing the above files with the nightly build 
> openjump-core-1.4.1-SNAPSHOT.jar which contains it plus the contents of 
> the other two jars.
>
> Michael how comes it did not end up in the release :)?
>
> ede
>
> --
> AppSumo Presents a FREE Video for the SourceForge Community by Eric
> Ries, the creator of the Lean Startup Methodology on "Lean Startup
> Secrets Revealed." This video shows you how to validate your ideas,
> optimize your ideas and identify your business strategy.
> http://p.sf.net/sfu/appsumosfdev2dev
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
 --
 AppSumo Presents a FREE Video for the SourceForge Community by Eric
 Ries, the creator of the Lean Startup Methodology on "Lean Startup
 Secrets Revealed." This video shows you how to validate your ideas,
 optimize your ideas and identify your business strategy.
 http://p.sf.net/sfu/appsumosfdev2dev
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>> --
>>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>>> Secrets Revealed." This video shows you how to validate your ideas,
>>> optimize your ideas and identify your business strategy.
>>> http://p.sf.net/sfu/appsumosfdev2dev
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>
>> --
>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>> Secrets Revealed." This video shows you how to validate your ideas,
>> optimize your ideas and identify your business strategy.
>> http://p.sf.net/sfu/appsumosfdev2dev
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> --
> AppSumo Presents a FREE Video for the SourceForge Community by Eric
> Ries, the creator of the Lean Startup Methodology on "Lean Startup
> Secrets Revealed." This video shows you how to validate your ideas,
> optimize your ideas and identify your business strategy.
> http://p.sf.net/s

Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-14 Thread edgar . soldin
On 13.07.2011 22:04, Michaël Michaud wrote:
> Le 13/07/2011 21:26, edgar.sol...@web.de a écrit :
>> ahh ok, good to know. i do not use ant. while you are at it. how about 
>> switching back to _one_ jar.  i can't see a valid reason to separate 
>> workbench, all i see are lots of dependencies between the two jars.
> You're right. It could make sense to have a minimal working jar, but it 
> would be more complex than just separating packages as it is today.
> I'll do a single jar.

i see only xml files in trunk that seem to organize the nightly build. where 
are the ant build files located?

>> also. isn't there a wildcard adding possible with ant, preventing this for 
>> the future?
> Yes, it is even possible to include all but one package (there is a 
> jumptest subfolder in src which may not have its place in distribution)

+1 let's rather exclude than cherrypick includes.

:) ede

 
> Michaël
>> ..ede
>>
>> On 13.07.2011 21:16, Michaël Michaud wrote:
>>> Hi,
>>>
>>> I'm sorry that net package misses in 1.4.1.
>>> Unfortunately, it has not been added to the ant build file after Ede
>>> replaced old sun classes by these free ones, and I did not notice it
>>> because it seems it does not prevent to connect to wms url as long as it
>>> is not secured url.
>>> Not sure how NB is compiled. Using maven I think.
>>>
>>> I'll fix this to night and let you know.
>>>
>>> Michaël
>>>
>>> Le 13/07/2011 10:51, edgar.sol...@web.de a écrit :
 On 13.07.2011 10:41, Rahkonen Jukka wrote:
> Hi,
>
> I tested WMS basic authentication for Ede some time ago and it did work 
> then with the nightly build that Ede showed me.  However, it looks like 
> something went wrong with the OJ 1.4.1 release.
> When trying to connect with WMS url like 
> "https://username:password@server..."; the result is this error:
>
> java.lang.NoClassDefFoundError: net/iharder/Base64
 right, the new base64 encoder component is missing in 
 openjump-workbench-1.4.1.jar or openjump-api-1.4.1.jar. You can workaround 
 by replacing the above files with the nightly build 
 openjump-core-1.4.1-SNAPSHOT.jar which contains it plus the contents of 
 the other two jars.

 Michael how comes it did not end up in the release :)?

 ede

 --
 AppSumo Presents a FREE Video for the SourceForge Community by Eric
 Ries, the creator of the Lean Startup Methodology on "Lean Startup
 Secrets Revealed." This video shows you how to validate your ideas,
 optimize your ideas and identify your business strategy.
 http://p.sf.net/sfu/appsumosfdev2dev
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


>>>
>>> --
>>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>>> Secrets Revealed." This video shows you how to validate your ideas,
>>> optimize your ideas and identify your business strategy.
>>> http://p.sf.net/sfu/appsumosfdev2dev
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>> --
>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>> Secrets Revealed." This video shows you how to validate your ideas,
>> optimize your ideas and identify your business strategy.
>> http://p.sf.net/sfu/appsumosfdev2dev
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
> 
> 
> --
> AppSumo Presents a FREE Video for the SourceForge Community by Eric 
> Ries, the creator of the Lean Startup Methodology on "Lean Startup 
> Secrets Revealed." This video shows you how to validate your ideas, 
> optimize your ideas and identify your business strategy.
> http://p.sf.net/sfu/appsumosfdev2dev
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on "Lean Startup 
Secrets Revealed." This video shows you how to validate your ideas, 
optimize your ideas and 

Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-13 Thread Michaël Michaud
Le 13/07/2011 21:26, edgar.sol...@web.de a écrit :
> ahh ok, good to know. i do not use ant. while you are at it. how about 
> switching back to _one_ jar.  i can't see a valid reason to separate 
> workbench, all i see are lots of dependencies between the two jars.
You're right. It could make sense to have a minimal working jar, but it 
would be more complex than just separating packages as it is today.
I'll do a single jar.
> also. isn't there a wildcard adding possible with ant, preventing this for 
> the future?
Yes, it is even possible to include all but one package (there is a 
jumptest subfolder in src which may not have its place in distribution)

Michaël
> ..ede
>
> On 13.07.2011 21:16, Michaël Michaud wrote:
>> Hi,
>>
>> I'm sorry that net package misses in 1.4.1.
>> Unfortunately, it has not been added to the ant build file after Ede
>> replaced old sun classes by these free ones, and I did not notice it
>> because it seems it does not prevent to connect to wms url as long as it
>> is not secured url.
>> Not sure how NB is compiled. Using maven I think.
>>
>> I'll fix this to night and let you know.
>>
>> Michaël
>>
>> Le 13/07/2011 10:51, edgar.sol...@web.de a écrit :
>>> On 13.07.2011 10:41, Rahkonen Jukka wrote:
 Hi,

 I tested WMS basic authentication for Ede some time ago and it did work 
 then with the nightly build that Ede showed me.  However, it looks like 
 something went wrong with the OJ 1.4.1 release.
 When trying to connect with WMS url like 
 "https://username:password@server..."; the result is this error:

 java.lang.NoClassDefFoundError: net/iharder/Base64
>>> right, the new base64 encoder component is missing in 
>>> openjump-workbench-1.4.1.jar or openjump-api-1.4.1.jar. You can workaround 
>>> by replacing the above files with the nightly build 
>>> openjump-core-1.4.1-SNAPSHOT.jar which contains it plus the contents of the 
>>> other two jars.
>>>
>>> Michael how comes it did not end up in the release :)?
>>>
>>> ede
>>>
>>> --
>>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>>> Secrets Revealed." This video shows you how to validate your ideas,
>>> optimize your ideas and identify your business strategy.
>>> http://p.sf.net/sfu/appsumosfdev2dev
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>
>> --
>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>> Secrets Revealed." This video shows you how to validate your ideas,
>> optimize your ideas and identify your business strategy.
>> http://p.sf.net/sfu/appsumosfdev2dev
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
> --
> AppSumo Presents a FREE Video for the SourceForge Community by Eric
> Ries, the creator of the Lean Startup Methodology on "Lean Startup
> Secrets Revealed." This video shows you how to validate your ideas,
> optimize your ideas and identify your business strategy.
> http://p.sf.net/sfu/appsumosfdev2dev
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>


--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on "Lean Startup 
Secrets Revealed." This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-13 Thread edgar . soldin
ahh ok, good to know. i do not use ant. while you are at it. how about 
switching back to _one_ jar.  i can't see a valid reason to separate workbench, 
all i see are lots of dependencies between the two jars.

also. isn't there a wildcard adding possible with ant, preventing this for the 
future?

..ede

On 13.07.2011 21:16, Michaël Michaud wrote:
> Hi,
> 
> I'm sorry that net package misses in 1.4.1.
> Unfortunately, it has not been added to the ant build file after Ede 
> replaced old sun classes by these free ones, and I did not notice it 
> because it seems it does not prevent to connect to wms url as long as it 
> is not secured url.
> Not sure how NB is compiled. Using maven I think.
> 
> I'll fix this to night and let you know.
> 
> Michaël
> 
> Le 13/07/2011 10:51, edgar.sol...@web.de a écrit :
>> On 13.07.2011 10:41, Rahkonen Jukka wrote:
>>> Hi,
>>>
>>> I tested WMS basic authentication for Ede some time ago and it did work 
>>> then with the nightly build that Ede showed me.  However, it looks like 
>>> something went wrong with the OJ 1.4.1 release.
>>> When trying to connect with WMS url like 
>>> "https://username:password@server..."; the result is this error:
>>>
>>> java.lang.NoClassDefFoundError: net/iharder/Base64
>> right, the new base64 encoder component is missing in 
>> openjump-workbench-1.4.1.jar or openjump-api-1.4.1.jar. You can workaround 
>> by replacing the above files with the nightly build 
>> openjump-core-1.4.1-SNAPSHOT.jar which contains it plus the contents of the 
>> other two jars.
>>
>> Michael how comes it did not end up in the release :)?
>>
>> ede
>>
>> --
>> AppSumo Presents a FREE Video for the SourceForge Community by Eric
>> Ries, the creator of the Lean Startup Methodology on "Lean Startup
>> Secrets Revealed." This video shows you how to validate your ideas,
>> optimize your ideas and identify your business strategy.
>> http://p.sf.net/sfu/appsumosfdev2dev
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
> 
> 
> --
> AppSumo Presents a FREE Video for the SourceForge Community by Eric 
> Ries, the creator of the Lean Startup Methodology on "Lean Startup 
> Secrets Revealed." This video shows you how to validate your ideas, 
> optimize your ideas and identify your business strategy.
> http://p.sf.net/sfu/appsumosfdev2dev
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on "Lean Startup 
Secrets Revealed." This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-13 Thread Michaël Michaud
Hi,

I'm sorry that net package misses in 1.4.1.
Unfortunately, it has not been added to the ant build file after Ede 
replaced old sun classes by these free ones, and I did not notice it 
because it seems it does not prevent to connect to wms url as long as it 
is not secured url.
Not sure how NB is compiled. Using maven I think.

I'll fix this to night and let you know.

Michaël

Le 13/07/2011 10:51, edgar.sol...@web.de a écrit :
> On 13.07.2011 10:41, Rahkonen Jukka wrote:
>> Hi,
>>
>> I tested WMS basic authentication for Ede some time ago and it did work then 
>> with the nightly build that Ede showed me.  However, it looks like something 
>> went wrong with the OJ 1.4.1 release.
>> When trying to connect with WMS url like 
>> "https://username:password@server..."; the result is this error:
>>
>> java.lang.NoClassDefFoundError: net/iharder/Base64
> right, the new base64 encoder component is missing in 
> openjump-workbench-1.4.1.jar or openjump-api-1.4.1.jar. You can workaround by 
> replacing the above files with the nightly build 
> openjump-core-1.4.1-SNAPSHOT.jar which contains it plus the contents of the 
> other two jars.
>
> Michael how comes it did not end up in the release :)?
>
> ede
>
> --
> AppSumo Presents a FREE Video for the SourceForge Community by Eric
> Ries, the creator of the Lean Startup Methodology on "Lean Startup
> Secrets Revealed." This video shows you how to validate your ideas,
> optimize your ideas and identify your business strategy.
> http://p.sf.net/sfu/appsumosfdev2dev
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>


--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on "Lean Startup 
Secrets Revealed." This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-13 Thread edgar . soldin
On 13.07.2011 10:41, Rahkonen Jukka wrote:
> Hi,
> 
> I tested WMS basic authentication for Ede some time ago and it did work then 
> with the nightly build that Ede showed me.  However, it looks like something 
> went wrong with the OJ 1.4.1 release.
> When trying to connect with WMS url like 
> "https://username:password@server..."; the result is this error:
> 
> java.lang.NoClassDefFoundError: net/iharder/Base64

right, the new base64 encoder component is missing in 
openjump-workbench-1.4.1.jar or openjump-api-1.4.1.jar. You can workaround by 
replacing the above files with the nightly build 
openjump-core-1.4.1-SNAPSHOT.jar which contains it plus the contents of the 
other two jars.

Michael how comes it did not end up in the release :)? 

ede

--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on "Lean Startup 
Secrets Revealed." This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] WMS basic auth problem with OpenJUMP 1.4.1

2011-07-13 Thread Rahkonen Jukka
Hi,

I tested WMS basic authentication for Ede some time ago and it did work then 
with the nightly build that Ede showed me.  However, it looks like something 
went wrong with the OJ 1.4.1 release.
When trying to connect with WMS url like "https://username:password@server..."; 
the result is this error:

java.lang.NoClassDefFoundError: net/iharder/Base64
at com.vividsolutions.wms.WMService.initialize(WMService.java:118)
at 
com.vividsolutions.jump.workbench.ui.plugin.wms.URLWizardPanel.exitingToRight(URLWizardPanel.java:204)
at 
com.vividsolutions.jump.workbench.ui.wizard.WizardDialog.next(WizardDialog.java:257)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.openjump.swing.util.InvokeMethodRunnable.run(InvokeMethodRunnable.java:68)
at 
org.openjump.swing.listener.InvokeMethodActionListener.actionPerformed(InvokeMethodActionListener.java:71)
at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown 
Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at javax.swing.JComponent.processMouseEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.Dialog$1.run(Unknown Source)
at java.awt.Dialog$3.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.awt.Dialog.show(Unknown Source)
at java.awt.Component.show(Unknown Source)
at java.awt.Component.setVisible(Unknown Source)
at java.awt.Window.setVisible(Unknown Source)
at java.awt.Dialog.setVisible(Unknown Source)
at 
org.openjump.core.ui.plugin.file.OpenWizardPlugIn.execute(OpenWizardPlugIn.java:83)
at 
com.vividsolutions.jump.workbench.plugin.AbstractPlugIn$1.actionPerformed(AbstractPlugIn.java:130)
at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown 
Source)
at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at javax.swing.JComponent.processMouseEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.p