vote up 2 vote down star
2

We need to integrate a good CAPTCHA into our CA Siteminder implementation. What is the best CAPTCHA for use with Struts? We've been looking at reCAPTCHA.

flag

3 Answers

vote up 2 vote down check

The three CAPTCHA libraries I've used for Java are:

  1. JCaptcha - This is the most configurable of the three, and pretty well documented. But we can't seem to get this to look right, no matter what. It also does audio and other unconventional CAPTCHAs
    JCaptcha example
    http://jcaptcha.sourceforge.net/

  2. SimpleCaptcha - This is reasonably configurable, and pretty well documented. I like the way this looks, but some people have trouble reading it.
    SimpleCaptcha example
    http://simplecaptcha.sourceforge.net/

  3. icaptcha - This is pretty poorly documented, but shouldn't be too hard to figure out from the examples. In our tests, we found this to be more readable than the other two (can be a good thing or a bad thing, depending on your target audience)
    icaptcha example
    http://code.google.com/p/icaptcha/

Our apps are Spring MVC based, and it was really easy to integrate these. Integrating these with a Struts based application should be just as straightforward.

We just went with what looked best to us (icaptcha).

link|flag
vote up 2 vote down

I've gotten good results using JCaptcha. They also happen to have a nice documentation page on Struts integration.

link|flag
vote up 2 vote down

We've successfully used reCaptcha. There's a few things I like about reCaptcha

  • It contributes back to the community by helping to digitize books
  • You can customize the layout of the components to better fit your site
  • You can use the default layout if you're in a hurry to get it implemented
  • It includes the audio captcha for better website accessibility

I think the last point is important. I imagine that there are captcha libraries that do that for you but in case I'm wrong, reCaptcha has it already.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.