1 / 14

Naming and Directory Services

Naming and Directory Services. Celsina Bignoli bignolic@smccd.net. Naming Services. maintains a set of bindings bindings relate names to objects must provide the following minimal functionality ability to bind names to objects ability to look up objects by name

bobby
Download Presentation

Naming and Directory Services

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Naming and DirectoryServices Celsina Bignoli bignolic@smccd.net

  2. Naming Services • maintains a set of bindings • bindings relate names to objects • must provide the following minimal functionality • ability to bind names to objects • ability to look up objects by name • names within the service must abide to the same naming conventions

  3. Name Name Name Naming Service Structure Client Name Binding Binding Binding Naming Service

  4. Existing Naming Services • COS (Common Object Services) Naming • The naming service for CORBA applications • DNS (Domain Name System) • The Internet's naming service; maps people-friendly names (such as www.etcee.com) into computer-friendly IP (Internet Protocol) addresses • LDAP (Lightweight Directory Access Protocol) • Developed by the University of Michigan; as its name implies, it is a lightweight version of DAP (Directory Access Protocol), which in turn is part of X.500, a standard for network directory services. Currently, over 40 companies endorse LDAP. • NIS (Network Information System) and NIS+ • Network naming services developed by Sun Microsystems. Both allow users to access files and applications on any host with a single ID and password.

  5. Directory Services • a directory is a system of correlated entries • each entry may refer to any concrete or abstract object (employee, printer, service, file …) • An entry has attributes associated with it • an attribute consists of a name and one or more values • A directory service is a naming service with additional functionality for manipulating attributes • simple databases • allow you to locate entries based on attributes, not only name

  6. Name Name Name Attr Attr Attr Directory Service Structure Client Name Entry Entry Entry Directory Service

  7. Directory Structure Employee1 Employees Employee2 Company Printers Computer1 Hardware Computers Computer2 Fax Machines

  8. Existing Naming & Directory Services • Examples: • LDAP (Lightweight Directory Access Protocol) • NIS (Network Information System) • Novell’s NDS (Network Directory System) • Each has its own proprietary set of services • Makes it hard to switch between systems

  9. JNDI • Provides a common interface to disparate directory services • You can use behind the scene an heterogeneous set of Naming and Directory systems making it look like one, and not having to learn their specific APIs

  10. JNDI Architecture Client Code JNDI Client API Service Provider Interface LDAP Service Provider NIS Service Provider File System Service Provider

  11. JNDI Concepts • Atomic name: indivisible name • Ex: usr, local • Compound name:zero or more atomic names put together according to a specific syntax • Ex: /usr/local • Binding: association of a name with an object • Ex: /usr/local has 2 bindings one for usr and one for local • Context:a set of 0 or more bindings, with its own distinct atomic name • Ex: directory /etc contains mtab and exports /etc is a context containing bindings mtab and exports

  12. JNDI Concepts (2) • Naming system: connected set of contexts that use the same name syntax • Ex: folder tree in a file system • Namespace: set of names in a name system • Composite Name: name that spans multiple naming systems • Ex: http://www.trilogy.com/products/products.jsp URLscheme-idDNSfile system

  13. The Context Interface public NamingEnumeration list(Name name) throws NamingException; public NamingEnumeration list(String name) throws NamingException; public Object lookup(Name name) throws NamingException; public Object lookup(String name) throws NamingException; public void bind(Name name, Object obj) throws NamingException; public void bind(String name, Object obj) throws NamingException; public void rebind(Name name, Object obj) throws NamingException; public void rebind(String name, Object obj) throws NamingException; public void unbind(Name name) throws NamingException; public void unbind(String name) throws NamingException; …

  14. Initial Context Factories • Initial Context: starting point from where to perform naming and directory operations • Initial Context Factory: used to acquire initial context. Implemented by JNDI Drivers see code example using JNDI

More Related