Override getStatelessHiint for InlineFrame

2018-03-02 Thread Alberto Brosich
Hello, I have a page containing an InlineFrame component. This page should be stateless because the content of InlineFrame never change. Is it a good practice override getStatelessHint() method of InlineFrame component? Best regards Alberto

Re: Wicket in a wildfly cluster

2018-03-02 Thread Bas Gooren
Hi Ravi, Sorry - I have no experience with "real-time" session replication. Personally I would never attempt it, as wicket sessions can grow relatively large and thus replication may not be instantaneous (as you are experiencing)… Met vriendelijke groet, Kind regards, Bas Gooren Op 2 maart

Re: Wicket in a wildfly cluster

2018-03-02 Thread Ravi
We also tried to put the pagestore on a shared filesystem, with a similar result. The session itself is only a few kb. Thanks for taking the time! -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

Re: Wicket in a wildfly cluster

2018-03-02 Thread shengchehsiao
Hello Dose your wildfly runs at standalone mode ? or domain mode ? any adjustment of session replicating? I add boss-web.xml as flowing http://www.jboss.com/xml/ns/javaee; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation="

Re: Wicket in a wildfly cluster

2018-03-02 Thread Bas Gooren
Hi Ravi, You don’t mention what’s in front of your application servers. Are you doing non-sticky load balancing? Or are you having issues when the user hits the same application server? (Which would be a different issue) Met vriendelijke groet, Kind regards, Bas Gooren Op 2 maart 2018 bij

Re: Wicket in a wildfly cluster

2018-03-02 Thread Ravi
Hi Bas, we have an apache that balances by using a round robin (byrequest). The application runs in an infrastructure that does not support sticky-sessions. So far from what we've seen both servers getting pinged withing milliseconds. One server responds correctly. The other one throws a

Wicket in a wildfly cluster

2018-03-02 Thread Ravi
Hi all, we have the following scenario; Our single-page application is a 100% used for application forms and makes heavy use of ajax calls (validation, visibility, etc). There might even be an ajax call for every blur on an input field. We're trying to put this application in a wildfly cluster