whats is mean by jndi
Answers were Sorted based on User's Feedback
Answer / abhinandan
JNDI is used to create instances of object and passing a
reference of the object to the server.Through JNDI one can
access the particular object through an unique name
associated with the particular Object. Eg
Hashtable ht = new Hashtable();
ht.put("Context.InitialContext","---");
ht.put("URL.ProviderURL","t3://localhost:1099/");
Context cntx = new InitialContext(ht);
DataSource ds =(DataSource)cntx.lookup("TestDataSource");
Connection con = ds.getConnection();
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / mahendar
JNDI is an naming registry.Using JNDI you can get SQL
Connection,mail connection.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / gokul d
jndi stands for java naming directory interface....it has
two methods ie naming.lookup(url) and naming.bind
(host,server) used in networking as well in EJB.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is clustering? What are the different algorithms used for clustering?
What are synchronized methods and synchronized statements?
Can I run seam with jdk 1.4 and earlier?
which of the following authentication is stronger than the others? a. Http Basic b. Http DIGEST c. Form based
What is the argument type of a programs main() method?
What state does a thread enter when it terminates its processing?
how do you Handle Front End Application data against DB with example?
0 Answers Campus Interaction, HCL,
What are the JSP implicit objects ?
Different between Struts and Spring? or Why use Spring, if you are already using Struts?
What are the different class loaders used by jvm?
difference between applicationserver and webserver
diffrence between jsp and servelts.