Hi all,
I have a JDBCRealm configured the server.xml to authenticate users. It all
works fine. The following lines are in my server.xml and show up in when I
click on the �User Database� followed by the �UserDatebase� nodes in the
tree in the admin application.
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users -->
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved">
</Resource>
<ResourceParams name="UserDatabase">
<parameter>
<name>factory</name>
<value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
</parameter>
<parameter>
<name>pathname</name>
<value>conf/tomcat-users.xml</value>
</parameter>
</ResourceParams>
The re is also When I go to the admin application
How do I change this to reflect a JDBCRealm?
Jeff