whats the relation ship between LDAP and JNDI?
Answer / harish
JNDI has classes provided by SUN that will help ur appln
interact with and LDAP server. JNDI appln work similarly to
JDBC applns once and be free to use 'drivers' from
different vendors. SUN provides the "driver" that will help
interact with the LDAP server. Sun also provides "drivers"
for other naming services (like CORBA). what SUN has not
written is a driver to interact with ADSI.
Is This Answer Correct ? | 13 Yes | 1 No |
VSS Objectives
What are the different types of features of the java collections framework? : java collections
Which sorting algorithm is used by collections.sort() in java ?
Which is the better framework for web applications, struts or spring, and why?
what is mean by hasing and maping in java platform and advantage?
what is the difference between banking and insurance domain?
What is the servletcontext listener and what is JspContext and page context pls tell in simple words.
What do you understand by synchronization? Why is it important?
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
what is the diffrence between insurance and telecom domain?
what is the difference between through and throws?
In HashSet duplicates are allowed while adding to the HashSet, but while retreiving the object from HashSet is not shown the duplicate values, WHY ?