JNDI

  Home  Java Programing  JNDI


“JNDI frequently Asked Questions in various Java naming and directory interfaces job Interviews by interviewer. The set of JNDI interview questions here ensures that you offer a perfect answer to the interview questions posed to you. Get preparation of JNDI job interview”



7 JNDI Questions And Answers

1⟩ What do you know about the directory service of JNDI?

Searching for files and directories done by providing Directory services. A directory service is a set of names. The user and resource information and machine addresses are summarized by directory service. For example, for a given user name, the service returns the attributes of the user such as telephone no, email address etc. A directory service use the databases that specialized and hierarchical in design.

 157 views

2⟩ Tell me what do you know about LDAP?

Lightweight Directory Access Protocol

Developed by the University of Michigan.

It is a protocol for locating organizations, individuals, and other resources such as files and devices in a network, whether on the public Internet or on a corporate intranet.

 149 views

3⟩ How to use LDAP to work with a directory service?

An LDAP directory can be distributed among many servers.

Each server can have a replicated version of the total directory that is synchronized periodically.

An LDAP server is called a Directory System Agent (DSA).

An LDAP server that receives a request from a user takes responsibility for the request, passing it to other DSAs as necessary, but ensuring a single coordinated response for the user.

 148 views

4⟩ What is the importance of JNDI?

To centralize the information storage the enterprises uses LDAP. The information is of user names, passwords, email addresses, printers, determination of database access. Multiple database management is reduced by centralizing the information.

 165 views

6⟩ Explain what is a naming service in JNDI?

A naming service maintains a set of bindings that relate names to objects.

A naming service follows naming convention due to which all objects in a naming system are named in the same way.

Clients use the naming service to locate objects by name.

 142 views