Issue #453 has been updated by Clément OUDOT.

Target version set to 2.0.1

Is this patch still needed with the latest 2.0 version?
----------------------------------------
Feature #453: Support formatting of binary objectGUID attribute for Microsoft 
LDAP servers
http://tools.lsc-project.org/issues/453

Author: Hugh Kelley
Status: New
Priority: Normal
Assigned to: 
Category: Core
Target version: 2.0.1


When working with Microsoft directories, the best (immutable and unique) handle 
for objects is the objectGUID attribute.  However, this attribute requires 
special formatting to be used in LDAP search filters.

The LSC filter "substitution engine" could be enhanced to format these binary 
attributes in a way that is compatible for search filters.   See the example 
attached and 
https://forums.oracle.com/forums/thread.jspa?threadID=1155698&tstart=0  for 
more details.

                // Where GUID is a byte array returned by a previous LDAP search
                for (int c=0;c<GUID.length;c++) {
                        byteGUID = byteGUID + "\\" + 
AddLeadingZero((int)GUID[c] & 0xFF);
                }



-- 
You have received this notification because you have either subscribed to it, 
or are involved in it.
To change your notification preferences, please click here: 
http://tools.lsc-project.org/my/account
_______________________________________________________________
Ldap Synchronization Connector (LSC) - http://lsc-project.org

lsc-dev mailing list
[email protected]
http://lists.lsc-project.org/listinfo/lsc-dev

Reply via email to