Re: Wicket 1.5-M1 causing IllegalStateException

2010-08-13 Thread Igor Vaynberg
2010/8/12 Major Péter majorpe...@sch.bme.hu: Hi, I have a page with the ~following markup: form  table (DataView)  tra href=link //tr  /table /form The link is constructed like: Link valuationLink = new Link(valuationLink) {   �...@override    public void onClick() {        

Re: Wicket 1.5-M1 causing IllegalStateException

2010-08-13 Thread Martin Grigorov
The breakpoint should be at: org.apache.wicket.request.http.handler.RedirectRequestHandler.respond(IRequestCycle) (wicket-request project) On Fri, Aug 13, 2010 at 9:54 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: 2010/8/12 Major Péter majorpe...@sch.bme.hu: Hi, I have a page with the

Re: Wicket 1.5-M1 causing IllegalStateException

2010-08-13 Thread Major Péter
Hi, thanks for the tip, but that had nothing to do with your breakpoint. Stay tuned, EPIC bug: The problem was basically, that the linked Page contained a not 1.5-M1 compatible TinyMCE component, which used old version of ResourceReference. My Page class couldn't be loaded, since there was a

Re: Wicket 1.5-M1 causing IllegalStateException

2010-08-13 Thread Major Péter
A better handling would be maybe in ServletWebResponse#sendRedirect to check whether redirect is already null, and throw a nice I mean true, not null.. wicketruntimeexception instead. (or find out, how could I have two sendredirectaction) or both Regards, Peter