-
1. Re: Wildfly 16 JDBC Realm Authentication with 2 Databases
mayerw01 Dec 3, 2019 9:03 AM (in response to nschweig)I am not sure understandig you correctly. But are you refering to 2 databases or 2 tables in the same database?
My understanding is that a datasource should point only to 1 database table (via the connection url).
And when refering to the JDBC Realm, did you set theclear-password-mapper to index 1?
I am also not sure what you intend to do in your 2nd query.And if you want to extract the role I guess the query should be a bit different eg like mentioned in WildFly Elytron Security chap 11.5.3.
But if you are refering to 2 tables I dont think you would need 2 queries in your case.
So a query like
SELECT u.PWD_, r.GROUP_ID
FROM act_user_id u, act_id_membership r
WHERE u.ID_ = ?
AND u.ID_ = r.USER_ID
Should also be fine (chap 4.1.3)
In case you have more than one database you would probably have to change the FROM part to
FROM database1.act_user_id u, database2.act_id_membership r -
2. Re: Wildfly 16 JDBC Realm Authentication with 2 Databases
nschweig Dec 4, 2019 3:18 AM (in response to mayerw01)Thanks for your help.
I am sorry, I was a little bit confused. Of course, it is one database and different tables.
It works like it is described in 11.5.3.