Re: tomcat session replication

2013-03-28 Thread sauli.ketola
Dan Retzlaff wrote Alternatively, Tomcat 7 supports parallel deployments so theoretically you can upgrade in-place [1]. [1] http://www.tomcatexpert.com/blog/2011/05/31/parallel-deployment-tomcat-7 Wow, I didn't know Tomcat had that feature. That could be the solution, I need to try it out.

Re: tomcat session replication

2013-03-27 Thread sauli.ketola
Igor Vaynberg-2 wrote ..the loadbalancer is configured to only send new sessions to A while B is being starved of new sessions. I know this is an old thread but I found it just now when facing a similar case. Could you or someone explain more: How do you do this and what load balancer are you

Re: Free Wicket guide now available!

2013-03-21 Thread sauli.ketola
Based on a quick browse, this seems to be a great and a very comprehensive quide to Wicket. I think documentation is the weakest part of Wicket and I have been waiting for something like this. None of the books I've read about Wicket so far explain the basics and internals of Wicket like this

Selenium powered WicketTester

2013-03-18 Thread sauli.ketola
About a year ago I started thinking about trying to implement a Selenium based WicketTester. Little over a week ago a finally decided to give it a try. So far it's been easier than I had imagined. It's in a early stage but I decided to share it at this point for comments and new ideas. Take a

Re: Integrating Wicket with an Angular app

2013-02-27 Thread sauli.ketola
Hi, I uploaded my example to github. You can take a look at it at https://github.com/ketola/wicket-angular If you download it, just run mvn jetty:run and you can access the sample at http://localhost:8090/todo What I have there is a Wicket application that contains an Angular powered page which

Re: Integrating Wicket with an Angular app

2013-02-26 Thread sauli.ketola
Ernesto Reinaldo Barreiro-4 wrote I want this special page to be be stateless, so I'm planning to serve JSON needed via mounted resources. I've been also playing with a similar idea. Nice to hear that there are similar attempts going on. In my case I decided to serve the JSON through a Spring

Re: AjaxEventBehavior called twice because of javascript onchange

2013-02-14 Thread sauli.ketola
Hi, Could you instead use this: See http://wicket.apache.org/apidocs/1.4/org/apache/wicket/markup/html/form/AbstractSingleSelectChoice.html#setNullValid%28boolean%29 If set to false, then Choose One will be displayed when the value is null. After a value is selected, and that change is

Re: [CVE-2012-1089] Apache Wicket serving of hidden files vulnerability

2012-03-22 Thread sauli.ketola
Could someone explain what is a 'null' package? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/CVE-2012-1089-Apache-Wicket-serving-of-hidden-files-vulnerability-tp4495044p4495662.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Jquery Confirmation Dialog - or WiQuery Dialog?

2011-11-29 Thread sauli.ketola
I'm not sure if you need this for an ajax button but I think you can do something similar for a normal button too. I achieved the same thing like this: 1. Create a class ConfirmBehavior that extends AbstractBehavior. 2. Override onRendered -method with this (adds the div containing the dialog

Re: RadioChoice model not updated in tomcat with liferay portal

2011-11-11 Thread sauli.ketola
So you don't support portlets in version 1.4.x either anymore? I thougt the portlet support was dropped from 1.5.x. Shouldn't you remove portlet support also from future versions of 1.4. to not to cause confusion? (I was under the impression that portlet support exists 1.4 as it is threre). --

Re: Include wicket into jsp page

2011-09-07 Thread sauli.ketola
I've added wicket pages to a jsp-page based application using a jsp-page which included the wicket page in an iframe. The reason it was done like this was because the jsp-application had a menu bar that I didn't want to clone in wicket. So basically I had a wicketPage.jsp which took as a