In my Practice_Database.accdb database I have 1 table EmployeeSearch with fields Emp_Names, Emp_Pass and Roll_Names.
I do not have a seperate Roles table. I have configured the database correctly as my Web Application is running fine for a simple database connectivity program. Now I want to have a login page which authenticates using Tomcat server.xml configuration( tag).
When I edited the server.xml my server does not start and startup.batch file simply vanishes out. And when I remove the changes I made in server.xml it works fine.
I read somewhere that I need to paste some jar files of my driver in <Catalina_Home>/server folder or somewhere. I have not done that (unable to find the jar).
Is my server not starting because of this? I have not installed any external driver. I simply made configurations in control Panel-> Administrative tool -> driver settings (well database is working fine, no problems with that).
The changes I made to server.xml in tomcat ::
<Realm className="org.apache.catalina.realm.JDBCRealm"
driverName="sun.jdbc.odbc.JdbcOdbcDriver"
connectionURL="jdbc:odbc:Practice_Database,"","""
userTable="EmployeeSearch" userNameCol="Emp_Name" userCredCol="Emp_Pass"
userRoleTable="EmployeeSearch" roleNameCol="Roll_Names"/>
</Realm>
I have not set any username and password for my Database. Please Help!