Re: Strong Password Validation using Ajax (with Fallback)

2009-10-17 Thread nino martinez wael
There was some implementation I think at wicketstuff, can remember it something like validator or something, so go to wicket stuff and see..:) 2009/10/17 Bernhard Grünewaldt > That's the case :) > > I want to have it working with Javascript activated and without. > > I am now thinking of somethi

Re: Strong Password Validation using Ajax (with Fallback)

2009-10-17 Thread Bernhard Grünewaldt
That's the case :) I want to have it working with Javascript activated and without. I am now thinking of something GWT does. You write java and the framework translates it to ajax. (if I am not mistaken) It would be cool to write just one Validator in Java that implements some behaviour and it wo

Re: Strong Password Validation using Ajax (with Fallback)

2009-10-16 Thread Jeremy Thomerson
Why wouldn't you? If it's https it's no different than sending it to complete the registration or change password page. It's the same load as any other AJAX validation. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Oct 16, 2009 at 1:48 PM, Ryan Gravener wrote: > I don't think you

Re: Strong Password Validation using Ajax (with Fallback)

2009-10-16 Thread Ryan Gravener
I don't think you want to validate passwords by sending them to the server multiple times. Ryan Gravener http://bit.ly/no_word_docs On Fri, Oct 16, 2009 at 2:31 PM, Bernhard Grünewaldt wrote: > Hello, > > Is there such a thing as a "Strong Password Validator"? > I found a jquery plugin which i

Strong Password Validation using Ajax (with Fallback)

2009-10-16 Thread Bernhard Grünewaldt
Hello, Is there such a thing as a "Strong Password Validator"? I found a jquery plugin which is nice: http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/ But it lacks the serverside Java implementation and i18n. Does anyone know of such a component? The code isn't that comple