Re: Groovy 2.5.1 array issue

2018-07-26 Thread Paul King
We took the opportunity with 2.5 to fix a long-known difference in behavior between Java and Groovy. It is listed in the release notes as a breaking change. (Basically if you always stick with just the stack methods (push/pop) or just the list methods (most other operations) you will be okay but

Groovy 2.5.1 array issue

2018-07-26 Thread Paolo Di Tommaso
Dear all, I've found a evil change in the 2.5.1 when using an array list. The following snippet is OK on 2.4.x def stack = new ArrayList() stack.push('a') stack.push('b') stack.push('c') assert stack.join('.') == 'a.b.c' When using 2.5.1 it the assertion fails

Re: XML RPC Service

2018-07-26 Thread Russel Winder
On Wed, 2018-07-25 at 21:53 +0200, MG wrote: > I have no personal experience with either XML-RPC, SOAP or REST (DB > Developer, Web-GUI needs covered by Vaadin), but this guy expresses > a > different (seemingly pragmatic) opinion (and he is using Groovy ;-) > ): >