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 |
How to implement or use the singleton class in java?
where is JNDI being used in java platform?
what are callback methods?
how to deploy the web application ?
When to use the Collection Classes(HashSet, LinkedHashSet, TreeSet....etc) in real time scenario ?
my interviewer asked me what technical specification you used how to answer that question
what is diff string and stringbuffer
who should use JNDI?
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()); } }
Difference between Spring framework and Struts framework?
12 Answers IBM, L&T, VAM,
what is the difference between checked and unchecked Exceptions?
what is difference between web server and application server?