I need to incorporate a CAPTCHA (CAPTCHA - Wikipedia) into my login page for a web application I am developing. Has anyone found or made a Java bean that does this? I know that I can do something like store a bunch of images and responses in a table and show a random one on a form, but I had hoped that the work for this had already been done.
Thanks in advance,
Steve in LA
Well im trying to do the same, i want to add a CAPTCHA in my login form. No one has ever done this?
how bout you steve? how did u solve this?
Thanks
We made our own in Servoy. We made a number of text images and a number of background images and overlay them. For each text image, we created a wav file using AT&T Labs Text To Speach site http://www2.research.att.com/~ttsweb/tts/demo.php. You may need to spell out the letter sounds (eff instead of f) to get it to sound right. We stored the text images, the associated wav file and the string value in records in a table and select them at random. To see it in action, go to https://store.dakim.com. It looks like this:
Looks like im gonna have to consider that option, it looks good
Thanks a lot Steve
SteveInLA:
We made our own in Servoy. We made a number of text images and a number of background images and overlay them. For each text image, we created a wav file using AT&T Labs Text To Speach site http://www2.research.att.com/~ttsweb/tts/demo.php. You may need to spell out the letter sounds (eff instead of f) to get it to sound right. We stored the text images, the associated wav file and the string value in records in a table and select them at random. To see it in action, go to https://store.dakim.com. It looks like this:
A+ for originality Wouldn’t have thought of this approach in a million years.