Is it possible to build a custom authenticator provider for WebLogic Server?
On WebLogic Server 11g I need to authenticate users which are defined as Oracle database users where we cannot retrieve the stored password.
The CustomDBMSAuthenticator or SQLAuthenticator on WebLogic are not usable because they suppose to retrive a clear text password from a repository and pass it back for matching with the one inserted by the user.
We need instead to be able to create an authenticator that accepts in input the password inserted by the user and matches it with the database (or in theory with any other repository) applying the appropriate hashing or invoking a service that performs the check and returns a true or false to WebLogic.
The CustomDBMSAuthenticator or SQLAuthenticator on WebLogic are not usable because they suppose to retrive a clear text password from a repository and pass it back for matching with the one inserted by the user.
We need instead to be able to create an authenticator that accepts in input the password inserted by the user and matches it with the database (or in theory with any other repository) applying the appropriate hashing or invoking a service that performs the check and returns a true or false to WebLogic.
0