Re: [wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-05-11 Thread Andrea Del Bene
You're welcome! On 10/05/2016 15:06, Fabio Fioretti wrote: I confirm version 6.23.0 fixed the problem. Thank you for the great support! Kind regards, Fabio On Thu, Apr 28, 2016 at 12:02 PM, Fabio Fioretti < windom.macroso...@gmail.com> wrote: Thanks Andrea, that would be excellent! Keep

Re: [wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-05-10 Thread Fabio Fioretti
I confirm version 6.23.0 fixed the problem. Thank you for the great support! Kind regards, Fabio On Thu, Apr 28, 2016 at 12:02 PM, Fabio Fioretti < windom.macroso...@gmail.com> wrote: > Thanks Andrea, that would be excellent! > > Keep up the great work, > Fabio > > On Thu, Apr 28, 2016 at

Re: [wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-04-28 Thread Fabio Fioretti
Thanks Andrea, that would be excellent! Keep up the great work, Fabio On Thu, Apr 28, 2016 at 11:52 AM, Andrea Del Bene wrote: > Thank you for the issue! I think we can make it for next release 6.23.0 > which should come quite soon (at the moment we are voting to release

Re: [wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-04-28 Thread Andrea Del Bene
Thank you for the issue! I think we can make it for next release 6.23.0 which should come quite soon (at the moment we are voting to release Wicket 6.23.0). Andrea. On 28/04/2016 11:34, Fabio Fioretti wrote: Done: https://github.com/wicketstuff/core/issues/490 Many thanks, Fabio On Thu,

Re: [wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-04-28 Thread Fabio Fioretti
Done: https://github.com/wicketstuff/core/issues/490 Many thanks, Fabio On Thu, Apr 28, 2016 at 11:03 AM, Martin Grigorov wrote: > Please file an issue at Wicketstuff GibHub. > On Apr 28, 2016 10:31 AM, "Fabio Fioretti" > wrote: > > >

Re: [wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-04-28 Thread Martin Grigorov
Please file an issue at Wicketstuff GibHub. On Apr 28, 2016 10:31 AM, "Fabio Fioretti" wrote: > Hi Martin, > > Thanks, I agree - findOffices() shouldn't be executed at all. In fact, > handleMethodExecution() returns before invoking application code in all > other

Re: [wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-04-28 Thread Fabio Fioretti
Hi Martin, Thanks, I agree - findOffices() shouldn't be executed at all. In fact, handleMethodExecution() returns before invoking application code in all other cases (step 1 for unauthorized access, step 3 for validation errors). Any chance to have it fixed relatively soon? (maybe Andrea can

Re: [wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-04-27 Thread Martin Grigorov
Hi, On Wed, Apr 27, 2016 at 12:07 PM, Fabio Fioretti < windom.macroso...@gmail.com> wrote: > Hi all, > > Please consider the following simple implementation of AbstractRestResource > (6.22.0): > > @ResourcePath("/rest/api") > public class MyRestResource extends > AbstractRestResource > { > >

[wicketstuff-restannotations] AbstractRestResource.toObject makes it impossible for mapped methods to know a parameter conversion went wrong.

2016-04-27 Thread Fabio Fioretti
Hi all, Please consider the following simple implementation of AbstractRestResource (6.22.0): @ResourcePath("/rest/api") public class MyRestResource extends AbstractRestResource { public MyRestResource () { super(new JsonWebSerialDeserial(new GsonObjectSerialDeserial())); }