Hello, Is the Manager application that comes with Tomcat for use with the MemoryRealm only, or can it be used with other types of realms, in particular, the JDBCRealm?
If it can be used with the JDBCRealm, how does one configure the JDBCRealm to store the additional descriptive information displayed by the Manager application (i.e., "Full name" for each User and "Description" for each Group and for each Role) ? The example JDBCRealm configuration that comes with Tomcat does not have a place to store the additional descriptive information . Any help, tips or references to resources appreciated. Thanks, -Brian <!-- example has no "Description" or "Full name" table/columns --> <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99" driverName="org.gjt.mm.mysql.Driver" connectionURL="jdbc:mysql://localhost:3306/test" connectionName="trial" connectionPassword="pw" userTable="users" userNameCol="user_name" userCredCol="user_pass" userRoleTable="user_roles" roleNameCol="role_name" /> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
