Web technologies -- Laboratory 11 -- 2007-2008 -- info.uvt.ro
Navigation
edit- Web technologies -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 1 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 2 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 3 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 4 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 5 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 6 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 7 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 8 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 9 -- 2007-2008 -- info.uvt.ro
- Web technologies -- Laboratory 10 -- 2007-2008 -- info.uvt.ro
JNDI -- Java Naming and Directory Interface
editReferences
editTutorials
editAPI
editLDAP -- Lightweight Directory Access Protocol
editReferences
editTutorials
editServers
editTools
editDiscussion points
edit- LDAP -- directory service access protocol;
- directory service -- an application that stores and organizes information (usually about users, computers, or organizational entities) in (usually) a hierarchical structure;
- directory -- a tree of entries;
- entry -- a set of attributes;
- attribute -- a pair of name and value (or possibly multiple values);
- each entry has at least one class;
- each entry has an unique name -- DN (Distinguished Name);
- example entry:
dn: cn=John Doe,dc=example,dc=com cn: John Doe givenName: John sn: Doe telephoneNumber: +1 888 555 6789 telephoneNumber: +1 888 555 1232 mail: john@example.com manager: cn=Barbara Doe,dc=example,dc=com objectClass: inetOrgPerson objectClass: organizationalPerson objectClass: person objectClass: top
- operations:
- search / retrieve entities;
- create / destroy / update entities;
- usage;
- LDAP protocol:
- binary protocol based on TCP/IP;
- we refer to directory services by an URL:
ldap://host:port/
Ciprian Dorin Craciun, 2008-01-10, ccraciun@info.uvt.ro