LDAP authentication using Active Directory

Oracle Application Express is a rapid development tool for Web applications on the Oracle database.
Post Reply
admin
Posts: 2062
Joined: Fri Mar 31, 2006 12:59 am
Location: Pakistan
Contact:

LDAP authentication using Active Directory

Post by admin »

ACL

BEGIN
DBMS_NETWORK_ACL_ADMIN.create_acl (
acl => 'erpstuff_acl.xml',
description => 'ACL for LDAP',
principal => 'APEX_2002000', << APEX current version username
is_grant => TRUE,
privilege => 'connect',
start_date => SYSTIMESTAMP,
end_date => NULL);

DBMS_NETWORK_ACL_ADMIN.assign_acl (
acl => 'erpstuff_acl.xml',
host => 'X.X.X.X', << ip of your ldap server
lower_port => 389, << port no
upper_port => NULL);

COMMIT;
END;

Authentication Schemes

IP address of AD server
Port : 389
SSL : No SSL (if no SSL)
Distinguished Name (DN) String(Value Required) : domain\%LDAP_USER%
Use Exact Distinguished Name (DN) : Yes

Authorization Schemes
Malik Sikandar Hayat
admin@erpstuff.com
Post Reply

Who is online

Users browsing this forum: No registered users and 3 guests