package org.apache.wicket.request.target gone in Wicket 1.5

2010-09-15 Thread José Monzón
Where did the package "org.apache.wicket.request.target" go in Wicket 1.5 ?? I need it in order to use AnnotatedMountScanner from Wicketstuff (which doesn't work with wicket 1.5 so far) thanks. - To unsubscribe, e-mail: users-un

Re: package org.apache.wicket.request.target gone in Wicket 1.5

2010-09-15 Thread Martin Grigorov
It is in wicket-request.jar If you use 1.5-M1 there is a bug and wicket-util.jar and wicket-request.jar and not included in the distro. Either take them from Maven repos or use 1.5-M2.1 which is currently being voted. On Wed, Sep 15, 2010 at 10:56 AM, José Monzón wrote: > Where did the package

Re: package org.apache.wicket.request.target gone in Wicket 1.5

2010-09-15 Thread monzonj
Well, actually the package doesn't exist either in wicket-request.jar, wicket-utils.jar or wicket.jar version 1.5-M2 (http://svn.apache.org/repos/asf/wicket/trunk/wicket/src/main/java/org/apache/wicket/request/) Classes such as MixedParamUrlCodingStrategy are nowhere to be located. Is it possibl

Re: package org.apache.wicket.request.target gone in Wicket 1.5

2010-09-15 Thread Martin Grigorov
Yes, this is re-worked in 1.5. Now there are IRequestMapper implementations. See MountedMapper. It supports both indexed and named parameters What do you mean by RESTful ? None of the IRequestTarget's supported GET, POST, PUT, DELETE, afaik. This is just "beauty" URL, nothing more. On Wed, Sep 15

Re: package org.apache.wicket.request.target gone in Wicket 1.5

2010-09-15 Thread monzonj
Oh really? It's not RESTful? I read it somewhere, but maybe it was referring only to the way URLs are represented... I was expecting to create my Restful API using IRequestMapper under Wicket :( Oh well, I suppose I can combine Wicket with Spring MVC for RESTful support. -- View this message in

Re: package org.apache.wicket.request.target gone in Wicket 1.5

2010-09-15 Thread Martin Grigorov
Please explain what do you mean by "restful". On Wed, Sep 15, 2010 at 2:04 PM, monzonj wrote: > > Oh really? It's not RESTful? I read it somewhere, but maybe it was > referring > only to the way URLs are represented... I was expecting to create my > Restful > API using IRequestMapper under Wicke