How to load-balance on AWS with standalone Tomcats

2015-03-09 Thread Daniel Del Castillo
Hi list, One of the modules of our application is completely written in Wicket 1.4.17. This application runs on a single standalone Tomcat installation. We now need to move this to AWS servers and ensure the service is 24/7 available. We are looking to have multiple Tomcat instances (not a

Re: How to load-balance on AWS with standalone Tomcats

2015-03-09 Thread Martin Grigorov
Hi, I think it would be much simpler if you use Tomcat clustering support. Wicket 1.4.x is a bit old but as far as I remember the support for it in Wicket has been introduced with 1.4.1 so it should work fine in 1.4.17. But if Tomcat clustering in not an option for you for some reason then: -

Re: Will renderHead method be invoked when a component is rendered via wicket events?

2015-03-09 Thread MadasamySankarapandian
On Mon, Mar 9, 2015 at 3:03 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi, If a component is rendered then its #renderHead() should be called! On Mon, Mar 9, 2015 at 4:08 AM, MadasamySankarapandian madas...@mcruncher.com wrote: I am using bootstrap-timepicker.js in a

Re: Will renderHead method be invoked when a component is rendered via wicket events?

2015-03-09 Thread Martin Grigorov
Hi, If a component is rendered then its #renderHead() should be called! On Mon, Mar 9, 2015 at 4:08 AM, MadasamySankarapandian madas...@mcruncher.com wrote: I am using bootstrap-timepicker.js in a single page application . Time picker is added in a panel which is then embedded in

Re: Accordion folding unfolding smoothly

2015-03-09 Thread avchavan
any workaround possible? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Accordion-folding-unfolding-smoothly-tp4669851p4669891.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: adding component Dynamically

2015-03-09 Thread avchavan
I've checked browser console and the onclick call never gets triggered when i click on the more link. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/adding-component-Dynamically-tp4669838p4669892.html Sent from the Users forum mailing list archive at Nabble.com.

Re: DataTable generics vs. IColumn generics

2015-03-09 Thread Patrick Davids
Hi Sven, I did already implement it this way... and its working. But my team members asked (more the client developers point of view), why the column-class itself is not a generic of Location, like this. public class LocationColumn extends PropertyColumnLocation { ... } At the current