Re: captcha + struts2

2008-01-15 Thread Brian Relph
I use an ImageCaptchaServlet that is generally like the one in the appfuse example, but without the security stuff. Also, i am usually not able to store the captcha's based on session id, so i pass a parameter in called 'captchaId' on my request. I register the servlet in my web.xml, and since i

Re: captcha + struts2

2007-11-18 Thread Brian Relph
Thanks for the suggestions ... I was able to use the appfuse example and remove all the acegi-related security stuff On 11/17/07, Chris Pratt <[EMAIL PROTECTED]> wrote: > > On Nov 17, 2007 6:14 AM, Brian Relph <[EMAIL PROTECTED]> wrote: > > I was wondering if anyone could help with a captcha impl

Re: captcha + struts2

2007-11-17 Thread Chris Pratt
On Nov 17, 2007 6:14 AM, Brian Relph <[EMAIL PROTECTED]> wrote: > I was wondering if anyone could help with a captcha implementation in > struts2. i have seen plenty of stuff on the acegi + captcha implementation > in appfuse, but i am not using acegi ... > I've used SimpleCaptcha in the past, bu

Re: captcha + struts2

2007-11-17 Thread Tom Schneider
This might be a good starting point: http://appfuse.org/display/APF/CAPTCHA+Integration Brian Relph wrote: > > I was wondering if anyone could help with a captcha implementation in > struts2. i have seen plenty of stuff on the acegi + captcha > implementation > in appfuse, but i am not using a