29 Oct
1999
29 Oct
'99
8:20 p.m.
Thanks for the reply, Before I posted my question, I crawled around lib/python/AccessControl/User.py, I saw both the _getPassword and authenticate methods. But, getPassword raises the NotImplemented exception as noted below: def _getPassword(self): """Return the password of the user.""" raise NotImplemented and authenticate calls the getPassword method, as noted below: def authenticate(self, password, request): passwrd=self._getPassword() Am I missing something? DR