I want to implement user authentication based on a table in the database, plus I want to have my own function to check password complexity and authentication function. It is like a custom authentication in Oracle APEX. Is it possible? If - yes, please, where are I can found example or a short description about it. |
Hi Pushkashu, Here is the tutorial you are looking for: http://theformspider.com/learningcenter/tutorial-40-how-to-implement-a-secure-loginlogout-mechanism/ In the tutorial, you can place your custom code to the logIn procedure. The code in the logIn procedure only checks if the userName and password fields are not null. You should replace that with your own custom authentication logic. Hope this helps, Yalim |
Grate, thank you very mach! |