This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JSP and the fly likes Using JDBCRealm in JSP application Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "Using JDBCRealm in JSP application" Watch "Using JDBCRealm in JSP application" New topic
Author

Using JDBCRealm in JSP application

Rudy Rusli
Ranch Hand

Joined: Jun 01, 2006
Posts: 114
I'm trying to use JDBC-Realm to save username and password information for my JSP application.
But it seems that the username and login doesn't work when I try to login.

I built two tables in MySQL database called 'user' and 'roles'.
There is only one entry in each table:
user (column names: username, password) -> 'myname', 'mypassword'
roles (column names: username, roles) -> 'myname', 'myrole'

Then I put these lines below in my server.xml.
<Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
driverName="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/startdb?dontTrackOpenResources=true&zeroDateTimeBehavior=convertToNull"
connectionName="myDbUsername" connectionPassword="myDbPassword"
userTable="user" userNameCol="username" userCredCol="password"
userRoleTable="roles" roleNameCol="roles" />

I try to login using 'myname' and 'mypassword' but it doesn't work.

Can somebody please advice?
Thanks.

ps: I'm using Tomcat 5.5
 
I agree. Here's the link: http://zeroturnaround.com/jrebel/download
 
subject: Using JDBCRealm in JSP application
 
Similar Threads
Apache authorization doesn't work for jsp's
Is it Tomcat's Bug or My Mistake
Windows Authentication Using Tomcat 5.0
Having problem when using web.xml to provide login system to user.
Using JDBCRealm in JSP application