I went through the user guide and the showcase but couldn't find a way to get the Captcha evaluation result in the backing bean. I can see the result on the top message bar on the UI but how to get the result in the backing bean?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I don't think that it has any result for your beans. If you type valid text in the captcha box the process validation phase does not throw error and your input will be handled as valid. Otherwise the captcha component signal the error and you will see the error message with the h:message or the h:messages tag. (Maybe you should attach some code.)

"If an entered value is invalid, an error message is added to FacesContext, and the component is marked invalid. If a component is marked invalid, JSF advances to the render response phase, which will display the current view with the validation error messages. If there are no validation errors, JSF advances to the update model values phase."

(From http://www.ibm.com/developerworks/library/j-jsf2/)

link|improve this answer
1  
Thanks! you are right. turns out I just need to put the captcha in the page and let JSF take care of it. – wei Sep 26 '11 at 1:22
feedback

Your Answer

 
or
required, but never shown

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