The queries tomcat uses are hardcoded. Given the way JDBC Realms are implemented on Tomcat you've only got two choices:
1. Modify the existing org.apache.tomcat.request.JDBCRealm to use the query you want it to use. 2. Write your own request interceptor from scratch. Have a look at the source for org.apache.tomcat.request.JDBCRealm it shouldn't be hard to get it do what you want. Good luck Hamish -----Original Message----- From: RAYMOND Romain [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 9:57 AM To: [EMAIL PROTECTED] Subject: RealmJDBC question Hello, I would like to implement RealmJDBC to get userrole from my DB, but I have to find the role (and so the associated table's row) from foreign keys depending on others parameters than user login row ... is it clear, and anybody has links or docs about this ? thanks -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]> -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
