Re: Wicket is #3 in the JSON perf test by TechEmpower

2017-03-22 Thread Tobias Soloschenko
"New" does not mean better. :-) kind regards Tobias > Am 22.03.2017 um 23:09 schrieb Martijn Dashorst : > > WOW > >> On Wed, Mar 22, 2017 at 10:12 PM, Martin Grigorov >> wrote: >> Hi, >> >> Somehow Wicket finished at 3rd position at the

Re: Wicket is #3 in the JSON perf test by TechEmpower

2017-03-22 Thread Martijn Dashorst
WOW On Wed, Mar 22, 2017 at 10:12 PM, Martin Grigorov wrote: > Hi, > > Somehow Wicket finished at 3rd position at the last preview run of > TechEmpower framework tests :-) > https://www.techempower.com/benchmarks/previews/round14/#section=data-r14=ph=json > > At plaintext

Wicket is #3 in the JSON perf test by TechEmpower

2017-03-22 Thread Martin Grigorov
Hi, Somehow Wicket finished at 3rd position at the last preview run of TechEmpower framework tests :-) https://www.techempower.com/benchmarks/previews/round14/#section=data-r14=ph=json At plaintext test we are at #18:

Re: Wicket properties file load at startup?

2017-03-22 Thread Martin Grigorov
Use ResourceModel or call #getString("...") in the first page constructor/onInitialize()/onConfigure() Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Mar 22, 2017 at 7:22 PM, Entropy wrote: > We have a new wicket app that is

Wicket properties file load at startup?

2017-03-22 Thread Entropy
We have a new wicket app that is waiting until the third page in our app before it loads a WHOLE LOT of properties stuff. I turned to debug and got literally thousands of these: [3/22/17 13:56:49:282 EDT] 0142 SystemOut O DEBUG ResourceStreamLocator Attempting to locate resource

Re: FilterForm with DropDownChoice

2017-03-22 Thread Sven Meier
Hi, have you tried subclassing your choices and adding some JavaScript? DropDownChoice(...) { onComponentTag(ComponentTag tag) { super.onComponentTag(tag); tag.put("onchange", "this.form.submit()"); } } I haven't tried this though. Have fun Sven -- View this

Re: ComponentNotFoundException and Clustering failover

2017-03-22 Thread Martin Grigorov
Hi, "I can stop one of the instances and I'm not logged in" This statement says that you don't really have a properly configured failover. If those two Tomcat instances are in a cluster then the http sessions should be replicated and you should stay logged in no matter which one is serving the

ComponentNotFoundException and Clustering failover

2017-03-22 Thread Wayne W
Hi, We have 2 instances of Tomcat running with Apache sitting in front balancing between the Tomcat instances. I have session replication setup which seems to work for basic bookmarkable links on the pages. I can stop one of the instances and I'm not logged in as it failover to the other

Re: Web sockets support clarification

2017-03-22 Thread Wayne W
Many thanks Martin On Mon, Mar 20, 2017 at 8:45 AM, Martin Grigorov wrote: > Hi, > > On Fri, Mar 17, 2017 at 6:00 PM, Wayne W > wrote: > > > Hi, > > > > we are currently using Wicket 6.17 and use a version of Atmosphere jar > > libraries (not

FilterForm with DropDownChoice

2017-03-22 Thread Christoph.Manig
Hello, I want to create a table with a filter form. I used the wicket FilterForm and implemented an own DataProvider. It works fine for the textfields. I can write some text and press "enter" and the list will be filtered. But if I make a choice in the selectbox and press "enter" nothing