Hi,I would like to add images into the person document where users can view the person photo and also view it through LDAP using WPS people finder portlet. What is the configuration or modification that needs to be done in the Person Document?
Thanks
Subject: Photos on Person Document
You can add the ‘jpegPhoto’ (or jpehPhoto;binary) attribute value to the Person record using an LDAP tool. Softerra works just fine, as does ldapmodify.exe provided by SunONE and IBM. Once the modify/add is done, you can view this person’s photo through People Finder portlet or search for this user using an LDAP browser (like Softerra) and ask to have the jpegPhoto attribute returned.
You cannot view these photos through a Notes client. This attribute in LDAP-specific and is cannot be exposed through the Notes client.
#Example LDIF operations
#This does an LDAP add operation which adds a new user to the directory with a jpegPhoto attribute.
dn: cn=Happy Mann,o=SVTND7
objectclass: top
objectclass: person
objectclass: organizationalPerson
objectclass: inetOrgPerson
objectclass: dominoPerson
sn: Mann
cn: Happy Mann
uid: ef7644442666
givenname: Happy
jpegPhoto: /happy.jpg
userPassword: password
#Or, if the user already exists, do the modify/add operation - examples below
dn: cn=Happy Mann,o=SVTND7
changeType: modify
add: jpegPhoto
jpegPhoto: /happy.jpg
dn: cn=Happy Mann,o=SVTND7
changeType: modify
add: jpegPhoto;binary
jpegPhoto;binary: /happy.jpg