I think the problem is on line 156 of LdapAuthenticationHandler

        if (response.getResult()) {
            doPostAuthentication(response);
        }

This should be 

        if (response.getResult()) {
            return doPostAuthentication(response);
        }

Works for me, anyway.
-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-dev

Reply via email to