1. Is there a way to have the DataSourceUserManager obtain other information
when authenticating?  I would like to get a list of groups that the user
belongs to as well as the user's real name and unique ID when they login.
(I don't want to use the default  Can this be done with the default classes,
or do I need to write my own UserManager class to handle that?

2. I've got the DataSourceUserManager working, meaning that it is verifying
login's through an HTML form against a database.  There is one problem: the
login-error.html doesn't appear when there is a log-in error.  Instead, the
user is presented with "HTTP 405 - Resource not allowed".  This is my
UserManager config in web.xml:

        <login-config>
                <auth-method>FORM</auth-method>
                <form-login-config>
                        <form-login-page>/login.html</form-login-page>
                        <form-error-page>/login-error.html</form-error-page>
                </form-login-config>
        </login-config>

The login-error.html was being presented in 0.9.1b, and I haven't changed
anything, so I'm wondering if I need to make some changes due to 0.9.4?

Thanks for your help,
Jeremy Pierson


Reply via email to