I modify the casloginview.jsp to show a captcha picture when a number of
fail login exceeds 
In my jsp the image tag look like this

<img src="captcha" width="140" height="50" class="imgCaptcha">

And in my cas-servlet.xml I add the prop for this url and the the bean
controller

<prop key="/captcha">captchaImageCreateController</prop>

<bean id="captchaImageCreateController"
class="util.CaptchaImageCreateController">
        <property name="jcaptchaService" ref="jcaptchaService" />
</bean>

But when I start the CAS webapp the image is not display properly and in
the debugging the /captcha call never happen or never enter to
captchaImageCreateController.handleRequest(HttpServletRequest request,
HttpServletResponse response).
Is like CAS redirect to /login the call to /captcha

Is any way to free /captcha from redirect?
_______________________________________________
Yale CAS mailing list
[email protected]
http://tp.its.yale.edu/mailman/listinfo/cas

Reply via email to