Tapestry Testify and chenillekit captcha

2012-05-24 Thread Simon Raveh
Hi, I'm trying to test a page that has a chenille kit Kaptcha component. The issue I'm having is that when testing the page with TapestryTestify, the event (kaptchaEvent) that generate the image and set kaptchaValue field inside the component is never being called. So I get null pointer

Re: User registration component with captcha for tapestry 5.3?

2011-10-10 Thread Muhammad Gelbana
, please let me know :) Do you know if there is any tapestry component that allow user registration feature, like including email notificatiion, captcha etc as a tapestry components/mixins? If not, what is the workaround/best alternative(s)? Thanks! -- View this message in context: http

User registration component with captcha for tapestry 5.3?

2011-09-30 Thread TG
Hi, If I sounded like to greedy, please let me know :) Do you know if there is any tapestry component that allow user registration feature, like including email notificatiion, captcha etc as a tapestry components/mixins? If not, what is the workaround/best alternative(s)? Thanks! -- View

Authentication Spring Security Captcha after 3 failed attempts

2009-03-26 Thread Borut Bolčina
Hello, I would like to display a CAPTCHA challenge to a user after 3 failed login attempts. If using tapestry5-spring-security 2.0.1 the form looks like: form xmlns:t=http://tapestry.apache.org/schema/tapestry_5_0_0.xsd; action=${loginCheckUrl} method=POST t:if test=failedUsername

Re: Authentication Spring Security Captcha after 3 failed attempts

2009-03-26 Thread Borut Bolčina
, Borut 2009/3/26 Borut Bolčina borut.bolc...@gmail.com: Found a solution. The login is now protected as google account is - with captcha after 5 failed retries. The thing that bothers me is this stack trace in the console which is triggered by pressing the login submit button: 2009-03-26

Re: [T4] tapestry-captcha source?

2008-07-07 Thread Kalle Korhonen
Oh, for this thing I don't want to rely on external services. tapestry-captcha integrates with jcaptcha. Just a note for others if you are looking to use it, you are probably better off doing your own integration with jcaptcha as there are quite a few things you might want to configure

[T4] tapestry-captcha source?

2008-07-05 Thread Kalle Korhonen
Hey, anybody happen to have the source for James Carman's tapestry-captcha? Just started seeing a need for some type of captcha-functionality only to find out that http://www.carmanconsulting.com/mvn/com/javaforge/tapestry/tapestry-captcha/returns 404 and javaforge's tapestry project is non

Re: [T4] tapestry-captcha source?

2008-07-05 Thread kranga
: Saturday, July 05, 2008 7:11 PM Subject: [T4] tapestry-captcha source? Hey, anybody happen to have the source for James Carman's tapestry-captcha? Just started seeing a need for some type of captcha-functionality only to find out that http://www.carmanconsulting.com/mvn/com/javaforge/tapestry

captcha

2007-10-16 Thread Paul Stanton
Hi all, I need to get a captcha feature working on one form in one of our apps. I've seen that James Carman wrote one at some point (4.0?) but I can't find a download anywhere. I don't use maven .. does anyone know of a captcha component for tapestry, and where to download it from and any

Re: captcha

2007-10-16 Thread Paul Stanton
I've downloaded the jar from: http://www.carmanconsulting.com/mvn/com/javaforge/tapestry/tapestry-captcha/0.1-SNAPSHOT/ can't find any usage or installation docs .. any help?? - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: tapestry-captcha/acegi integration

2006-10-05 Thread Denis McCarthy
for the CaptchaEngineService here. When I step through the code in the CaptchaEngineService prior to the NPE, the LinkFactory is indeed null. Am I missing some extra configuration or something? Thanks for your help Denis James Carman wrote: Denis, The hivemodule.xml file for Tapestry-Captcha will take care of wiring

Re: tapestry-captcha/acegi integration

2006-10-05 Thread Ed Ross
, the LinkFactory is indeed null. Am I missing some extra configuration or something? Thanks for your help Denis James Carman wrote: Denis, The hivemodule.xml file for Tapestry-Captcha will take care of wiring in the linkFactory and imageCaptchaService. James -Original Message- From: Denis

Re: tapestry-captcha/acegi integration

2006-10-05 Thread James Carman
help Denis James Carman wrote: Denis, The hivemodule.xml file for Tapestry-Captcha will take care of wiring in the linkFactory and imageCaptchaService. James -Original Message- From: Denis McCarthy [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 04, 2006 11:08 AM

Re: tapestry-captcha/acegi integration

2006-10-05 Thread Denis McCarthy
something in my app that's causing this, but I don't know what. I'm using tap 4.1. I thought that might be the problem (as tapestry-captcha has 4.0 as a dependency in its pom) But I get the same exception in CaptchaEngineService when I try it with 4.0. If anyone knows of any error that would cause

Re: tapestry-captcha/acegi integration

2006-10-05 Thread James Carman
Denis, The tapestry-captcha library does work, at least in isolation. Have you tried running with without the Acegi stuff baked in too? Can you turn up logging to see what HiveMind is trying to wire in when it creates that CaptchaEngineService? It will tell you what it wires and I'm pretty

tapestry-captcha/acegi integration

2006-10-04 Thread Denis McCarthy
Hi, I'm attempting to integrate James Carman's tapestry-captcha library into a proof of concept app I'm putting together. The acegi stuff is redirecting correctly to a very simple captcha page just containg a reference to the captcha component from tapestry-captcha. Here's the .page: page

RE: tapestry-captcha/acegi integration

2006-10-04 Thread James Carman
Denis, The hivemodule.xml file for Tapestry-Captcha will take care of wiring in the linkFactory and imageCaptchaService. James -Original Message- From: Denis McCarthy [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 04, 2006 11:08 AM To: Tapestry users Subject: tapestry-captcha

Re: hivemind injections for custom captcha validator

2006-07-23 Thread spamsucks
Wow, wish I saw that earlier. I looked in tassel, the component wiki page and the other component repositories and didn't find this. I will check it out. thanks. James Carman wrote: There's already a captcha component in the tapestry-captcha library. Can't you use that? I finally