Re: Performance Degredation for Adding Components in Wicket 7.0.0 vs. Wicket 6.20.0

2015-09-15 Thread Martijn Dashorst
Thanks for doing this! Martijn On Mon, Sep 14, 2015 at 10:43 PM, Aaron J. Garcia wrote: > >> I created an issue in JIRA, >> attached a quick-start, and marked it as Major issue. In my opinion, this >> should be moved to Critical or Blocker status though... I'm sure I'm not

Re: WebSocket Filter to open a Hibernate Session

2015-09-15 Thread Martin Grigorov
Hi, Servlet Filters are not used when sending messages in web socket connection. This is how Servlets work at the moment. You can use Wicket's IRequestCycleListener's onBeginRequest/onEndRequest. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Sep 15, 2015

Re: BeanValidation --> wrong maxlength value in TextField

2015-09-15 Thread Martin Grigorov
Hi Francois, A miracle happened after adding & HTML elements to PageWithForm.html ;-) Without Wicket logs an ERROR. About Integer.MAX_VALUE - a breakpoint at org.apache.wicket.bean.validation.SizeTagModifier#modify shows that this method is called twice per property. Once with

WebSocket Filter to open a Hibernate Session

2015-09-15 Thread Marco Springer
Hi, Using normal requests and long-polling ajax timers to update an interface works fine with hibernate sessions. Now I'm trying to implement WebSockets to update small parts of a web application that come from server side events. I want to get rid of the long polling. For now I'm only using