How do you handle rolling upgrades?

2017-07-26 Thread Bas Gooren
Hi All, TL;DR: How/where do you host your wicket apps so you can deploy a new version while users are actively using the old/current version? In particular: when the new version cannot read the sessions of the old version due to page changes. We’re investigating how we can eliminate downtime in

Re: NPE in org.apache.wicket.request.http.handler.RedirectRequestHandler.respond

2017-07-26 Thread Martin Grigorov
I've added a check for 7.x and 8.x - https://git1-us-west.apache.org/repos/asf?p=wicket.git;a=commitdiff;h=5f3fc484;hp=3ec2c617f1e27f06df985032e233ca4799097b26 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Jul 26, 2017 at 1:48 PM, Martin Grigorov

Re: NPE in org.apache.wicket.request.http.handler.RedirectRequestHandler.respond

2017-07-26 Thread Martin Grigorov
https://github.com/apache/wicket/blob/wicket-6.17.0/wicket-request/src/main/java/org/apache/wicket/request/http/handler/RedirectRequestHandler.java#L99 says that getRedirectUrl() returns null. So something calls RedirectRequestHandler's constructor with null url. Wicket doesn't instantiate this

Re: NPE in org.apache.wicket.request.http.handler.RedirectRequestHandler.respond

2017-07-26 Thread Wayne W
Still on 6.17.0 Martin. Not had the time/resources to move to 6.18 which I want because of that replication fix!! On Tue, Jul 25, 2017 at 7:55 PM, Martin Grigorov wrote: > Which version of Wicket do you use ? > > Martin Grigorov > Wicket Training and Consulting >

Re: Message Scroll Banner in Wickets

2017-07-26 Thread Martin Grigorov
OK. It seems you have learned how to check for JavaScript errors. Now it is time to learn how to debug JS in the Sources tab of Dev Tools. Put a breakoint on the line with " $('.marquee').marquee({" and see whether it is executed. If it is executed then everything is fine from Wicket side. From

Re: How do you handle rolling upgrades?

2017-07-26 Thread Martin Makundi
Also if you shut down sessions, you need a grace period which lengthens the update time. 2017-07-26 16:05 GMT+03:00 Bas Gooren : > Hi All, > > TL;DR: How/where do you host your wicket apps so you can deploy a new > version while users are actively using the old/current version? In

Re: The day Wicket became Apache Wicket 10 years ago!

2017-07-26 Thread SeldonCrisis
I'm relatively new to Java web dev, so Wicket was pretty intimidating at first. Thanks to the community and all the posts in this forum, I've gone from total n00b to somewhat proficient with Wicket. You guys are seriously some of the most helpful people I've ever known, thanks for all your work!

Re: how to implement resource bundle to get text from the xml file

2017-07-26 Thread extraquoo
the current project use the i18n xml like below -- View this message in context: