Re: client timezone and flickering

2013-09-11 Thread Martin Grigorov
Hi, By default Wicket redirects temporarily to a special page where JavaScript extracts the info and sends it back to the server. You may need custom solution that does this logic with Ajax in the background. On Tue, Sep 10, 2013 at 7:43 PM, infiniter infini...@gmail.com wrote: has anyone

Re: client timezone and flickering

2013-09-11 Thread Maxim Solodovnik
Would be nice to have WebSession#getAjaxClientInfo out of the box :) On Wed, Sep 11, 2013 at 2:17 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, By default Wicket redirects temporarily to a special page where JavaScript extracts the info and sends it back to the server. You may need

Re: client timezone and flickering

2013-09-11 Thread Martin Grigorov
Implement it and attach it to a ticket. On Wed, Sep 11, 2013 at 11:15 AM, Maxim Solodovnik solomax...@gmail.comwrote: Would be nice to have WebSession#getAjaxClientInfo out of the box :) On Wed, Sep 11, 2013 at 2:17 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi, By default

Re: client timezone and flickering

2013-09-11 Thread Maxim Solodovnik
Will try :) On Wed, Sep 11, 2013 at 3:20 PM, Martin Grigorov mgrigo...@apache.orgwrote: Implement it and attach it to a ticket. On Wed, Sep 11, 2013 at 11:15 AM, Maxim Solodovnik solomax...@gmail.com wrote: Would be nice to have WebSession#getAjaxClientInfo out of the box :) On

Using Fortress, Spring and Tomcat to Secure Wicket 6.x Applications

2013-09-11 Thread Shawn McKinney
Hello, A couple of days ago I published article documenting an approach to secure Wicket applications running in Jetty container using a simple property file to store credentials. This new article builds on that by adding Fortress, OpenLDAP and Tomcat to the mix.

custom authentication/authorization without Spring

2013-09-11 Thread Parker, James
I'm looking for a way to create custom authentication and authorization without the use of additional libraries such as Spring. Our current need is to look for a portal authentication cookie and validate it, then search a database for what the user is authorized to do. If validation fails, we

Get help for Apache Wicket users list

2013-09-11 Thread Medina, Hiram Alberto
Hi wicket team! I want to report a problem regarding the UrlValidator, I'm trying to use this to validate some URL, but I require to validate Absolute Paths too on this kind of fields. When I use the UrlValidator some of his methods, for example the UrlValidator method isValid(String value) is

Re: Get help for Apache Wicket users list

2013-09-11 Thread Gabriel Landon
Hi, isValid is final, but you can overrides onValidate /** * @see AbstractValidator#onValidate(IValidatable) */ @Override protected void onValidate(IValidatableString validatable) { String url = validatable.getValue();