what is jndi?
Answer / sivasubramanian.k
The Java Naming and Directory Interface (JNDI) is an API
for directory service that allows clients to discover and
lookup data and objects via a name. Like all Java APIs that
interface with host systems, JNDI is independent of the
underlying implementation. Additionally, it specifies a
service provider interface (SPI) that allows directory
service implementations to be plugged into the framework.
The implementations may make use of a server, a flat file,
or a database; the choice is up to the vendor.
| Is This Answer Correct ? | 9 Yes | 0 No |
What is rmi and steps involved in developing an rmi object?
What is default specifier ??? Use of default specifier ???
types of applets?.
Is alive method in java?
What is defined as false sharing in the context of multithreading?
what is webservices
5 Answers Consultancy, Mind Tree,
What are the Class Libraries ?
5 Coding best practices you learned in java?
What is the difference between instanceof and isinstance?
how to deploy apache tomcat server to weblogic server in java
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
What is the difference between a Window and a Frame?