Communities
|
Social Applications
Networks
Support
|
|
C-Level Executives
Other Roles
|
|
Support
Education
Partner
Other Tasks
|
Developer Tools
Application Express
| How-To Document
Authenticate Users Using an LDAP Server
Date: 22-Jan-2004
After completing this How-To, you should understand:
Table of Contents
Introduction When your application's login page calls the Oracle Application Express login API with a username and password, the Oracle Application Express engine calls the credentials verification method specified in the application's current authentication scheme. You can implement this method yourself as a PL/SQL function returning boolean and put it in your application's schema. This allows you to perform username/password verification however you like (your own tables, LDAP lookup, 3rd-party API, etc.). As a convenience, Oracle Application Express offers some built-in credentials verification methods. One of those uses DBMS_LDAP to access the LDAP directory that you specify in the authentication scheme attributes. You can use this method if:
Note: You must already have run catldap in your database to create the LDAP packages. If in doubt, please read your Application Express installation file: doc/ldap.html. Creating an Authentication Scheme that uses the Built-in LDAP Authentication Method
Altering an Existing Authentication Scheme to use the Built-in LDAP Authentication Method
Additional Resources Oracle Application Express Home
Discuss this how-to in the Oracle Application Express Discussion Forum. |
