The Java Naming and Directory Interface (JNDI) is a Java API for a directory service that allows Java software clients to discover and look up data and objects via a name.

learn more… | top users | synonyms

12
votes
2answers
977 views

What is the purpose of JNDI

How can you realize the usage of JNDI , with an example if possible?
7
votes
2answers
190 views

What are the major motivations to use JNDI for datasources?

I fail to understand why someone would use JNDI. Can someone high light the major reasons to use JNDI for datasources?
7
votes
6answers
2k views

Maintaining JNDI across multiple instances of Tomcat

I am wondering how people manage maintaining JNDI resources across multiple instances of their Tomcat Application server. Lets take, for example, my database JNDI resource. It is declared within my ...
7
votes
8answers
16k views

Tomcat vs Weblogic JNDI Lookup

The Weblogic servers we are using have been configured to allow JNDI datasource names like "appds". For development (localhost), we might be running Tomcat and when declared in the <context> ...
6
votes
5answers
4k views

Why is my JNDI lookup for a QueueConnectionFactory returning null?

I am trying to look up a QueueConnectionFactory and Queue via Geronimo's JNDI. The Queue gets returned fine, but the QueueConnectionFactory lookup always returns null. It doesn't throw a ...
5
votes
2answers
107 views

Why use JNDI for data sources

Can anyone help explain why JNDI should be a preferred way to expose services such as a database / jms? The posts I run into all talk about the advantage of not having to load a specific driver ...
5
votes
2answers
327 views

JNDI path Tomcat vs. Jboss

I have DataSource which is configured on Tomcat 6 in context.xml as MyDataSource. And I'm fetching it the following way: DataSource dataSource; try { dataSource = ...
5
votes
2answers
508 views

Understanding JNDI

JNDI is like a map on steroids right? I use a key to find references to objects. Also, what is InitialContext? I don't seem to get the idea.
5
votes
3answers
567 views

Context specific JNDI parameters problem in tomcat 6

I am having trouble using JNDI when two or more applications are deployed on Tomcat 6. Consider the following scenario: I have 2 webapps, where each web.xml contains one JNDI parameter. web.xml webapp ...
5
votes
1answer
3k views

What to put into jta-data-source of persistence.xml?

What value should I place into <jta-data-source> of my persistence.xml? In glassfish admin panel I created a datasource name "abcDS". In my jndi.properties (inside src/test/resources) I defined ...
5
votes
1answer
751 views

Why bind hibernate SessionFactory to a JNDI resource?

In my current adventure of learning hibernate and setting it up to use an appserver's connection pool, most examples and resources out there point you in the direction of binding the SessionFactory to ...
5
votes
3answers
5k views

Help configuring JNDI with embedded JBoss in Tomcat 5.5.x

When I try the following lookup in my code: Context initCtx = new InitialContext(); Context envCtx = (Context) initCtx.lookup("java:comp/env"); return (DataSource) envCtx.lookup("jdbc/mydb"); I get ...
4
votes
1answer
126 views

What is the relationship between java:comp/env and java:global?

What is the relationship between java:comp/env and java:global (regarding 3.1 spec)? Seems like java:comp/env contains specific to EJB references. What means "specific" in this case?
4
votes
1answer
327 views

Injecting a jBoss EJB to a JSF 2.0 managed bean running in a tomcat web application

I have been looking around for some time, and I cannot find a solution, the problem is as follows: I have an EJB3 application deployed in jBoss 6.0, with remote ejb's. I have a web application (JSF ...
4
votes
1answer
272 views

Documentation of Java Mail API configuration for JNDI in Tomcat

I spend several days to figure out how to configure an javax.mail.Session in Tomcat via JNDI with authentication, now I get it but only after a deep dive in the code. In this time I have seen the ...
4
votes
1answer
2k views

java.lang.ClassNotFoundException: org.apache.tomcat.jdbc.pool DataSourceFactory

I'm investigating moving away from an Oracle connection pool and using the Tomcat connection pool. I followed the myriad of example for configuring the <Resource> in Tomcat's /conf/server.xml. I ...
4
votes
1answer
180 views

clojure.contrib.sql and REPL interaction

We have a Clojure web app which uses jndi to create a connection to the database. The code to query the database looks something like this: (def jndi-name {:name "jndi name"}) (defn query [q] ...
4
votes
3answers
601 views

Should I close JNDI-obtained data source?

Update: Apparently Tomcat, starting with 7.0.11, closes the DataSource for you, so it's not available in the webapp's contextDestroyed. See: https://issues.apache.org/bugzilla/show_bug.cgi?id=25060 ...
4
votes
1answer
1k views

org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

Hi When I try to connect to the datasource using JNDI, I am getting this error: [org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null' ...
4
votes
4answers
613 views

Running webapp in both jetty and tomcat

I have a webapp which in production I run on tomcat. It uses the mysql connector, however it is not bundled up with the war, rather it is included under tomcat's common lib directory, so that I can ...
4
votes
1answer
1k views

Configure hibernate's dialect using JNDI (with Spring)

I'm trying to configure a Spring+Hibernate web application using JNDI instead of a properties files. Everything works fine por database url, password, login, etc., but I can't get the dialect from the ...
4
votes
2answers
2k views

What is JNDI ? What is its basic use..? When it is used?

What is JNDI ? What is its basic use? When it is used?
4
votes
3answers
2k views

Tomcat vs Jetty JNDI Lookup

I use Spring to configure my Java Web App and in my Spring configuration I obtain a datasource via JNDI for Jetty as follows: <jee:jndi-lookup id="dataSource" jndi-name="jdbc/myDataSource" /> ...
4
votes
1answer
3k views

What does java:comp/env/ do?

I just spent too much time of my day trying to figure out some errors when hooking up some JNDI factory bean. The problem turned out to be that instead of this... <bean id="someId" ...
4
votes
3answers
1k views

Hows does Seam injection work in Ejb3

We are using Seam 2.2.0 Java 1.6.14 Weblogic 10.3.1.0 (named 11g Doh!) I have looked at Seam reference Seam in action These web pages However I still do not understand how to inject an EJB3 ...
4
votes
4answers
2k views

Common JNDI resources in Tomcat

I’m running a couple of servlet applications in Tomcat (5.5). All of the servlets use a common factory resource that is shared out using JNDI. At the moment, I can get everything working by including ...
4
votes
3answers
17k views

Glassfish v3 / JNDI entry cannot be found problems!

I've been having problems trying to call an EJB's method from a Java Application Client. Here is the code. EJB Remote Interface package com.test; import javax.ejb.Remote; @Remote public interface ...
4
votes
2answers
851 views

Naming and Directory (JNDI) - What are Pitfalls for Using JNDI

Naming and Directory (JNDI) - What are Pitfalls for Using JNDI
4
votes
5answers
10k views

JNDI lookup of EJB3 inside an EAR file on Glassfish

I have an EAR file with a bunch of JARs in it, and one of these JARs contains Local Session Beans (EJB3). I need to perform a JNDI lookup of these Session Beans from within an unmanaged POJO, also ...
4
votes
3answers
12k views

can't get DB Connection using JNDI datasource on JBoss

I'm studying how to build java webapps for JBossAS 5.1.0 and I'm trying to build a very basic jsp web app on JBossAS5 using a JNDI datasource for data access. When trying to open a connection I get ...
4
votes
5answers
735 views

Java EE and application servers - What can i do?

I decided that it is time for me to dig into the whole Java EE stuff. I am using EE some techniques whithin Java SE like JPA or JMS, but i still messing around with Java SE and i believe Java EE and ...
4
votes
3answers
4k views

JNDI without a J2EE Container (with JNP? Maybe some other provider?)

I need to run a JNDI provider without the overhead of a J2EE container. I've tried to follow the directions in this article, which describes (on page 3) exactly what I want to do. Unfortunately, ...
4
votes
3answers
1k views

java.lang.String in jndi default context with Apache Geronimo - How?

In a servlet I do the following: Context context = new InitialContext(); value = (String) context.lookup("java:comp/env/propertyName"); On an Apache Geronimo instance (WAS CE 2.1) how do i ...
3
votes
4answers
122 views
+150

Remote RMI Registry

I'm coding an application that requires remote binding, i.e., bind a remote object to a remote registry. By default, Java RMI Registry only binds locally, only remote objects that are binded in the ...
3
votes
1answer
42 views

EJB requesting a reference to itself?

If a method of an EJB makes a JNDI lookup to the same EJB and then executes some other method, is this guaranteed to be executed in the same thread? How about the actual instance of the EJB object; is ...
3
votes
2answers
90 views

Java ldap authentication issue

I'm trying to have my custom java application use our Active Directory Server for authentication but I cannot get it to work for some reason. Can anyone see why this is? Here is my method below: ...
3
votes
1answer
522 views

Cannot create JDBC driver of class '' for connect URL 'null'

I'm using Tomcat 7.0.12 and receiving this error whenever I attmept to access a JNDI datasource connecting to a postgresql db via a .jsp page in a webapp called 'ROOT': SEVERE: Servlet.service() for ...
3
votes
1answer
150 views

Connection Pooling with Oracle Internet Directory

I'm using Oracle's Java API Extensions to JNDI for accessing Oracle Internet Directory 11g (ldapjclnt11.jar library). A new dir context (connection) is created by calling ...
3
votes
1answer
420 views

Jetty 6: Cannot create context (NoInitialContextException)

I want to use connection pooling with Jetty 6, but so far it is giving my a lot of troubles. I do InitialContext context = new InitialContext(); It doesn't throw an exception, but when I inspect ...
3
votes
2answers
197 views

Updating LDAP encrypted passsword via JNDI

I need some pointers how to update an encrypted password in an LDAP (OpenLDAP) of a user within an LDAP tree. The passwords in the LDAP server are prefixed with {crypt} which I suppose indicates that ...
3
votes
3answers
3k views

JNDI DataSource with Tomcat 6 and Eclipse

I can't get my DataSource working with JNDI and Tomcat 6, while running it from Eclipse. I've added a context.xml to my /META-INF with the following content: <Context> <Resource ...
3
votes
1answer
882 views

Cannot create resource instance. javax.naming

trying to use tomcat pool to connect to the database. Here is my code : web.xml <resource-ref> <description>Resource pour le pool de connexion vers tomcat</description> ...
3
votes
3answers
747 views

Easy way to start a standalone JNDI server (and register some resources)

For testing purposes, I'm looking for a simple way to start a standalone JNDI server, and bind my javax.sql.DataSource to "java:/comp/env/jdbc/mydatasource" programmatically. The server should bind ...
3
votes
0answers
281 views

Standalone HornetQ and JBoss don't work together

Using JBoss 5.1.0GA and HornetQ 2.1.2 stand-alone.The problem is this : While I can publish messages using a JMS client to the hornetQ server I can not publish messages using myApp that is deployed in ...
3
votes
2answers
119 views

what is JNDI and do i need it for website building

I am learning java and spring for websites. few time i see the word JNDI. what it is and do i need to learn it or do i need it in the process of building web application
3
votes
1answer
399 views

JBoss JNP as standalone server and using Resource configs from tomcat's context.xml

I have a couple of modules which now have the need of JNDI. One of these modules runs via Apache Tomcat while the rest run standalone as J2SE application. I was able to configure the module which ...
3
votes
2answers
2k views

Getting a JDBC connection by JNDI in Spring JDBC

This page on Spring JDBC says The DataSourceUtils class … provides static methods to obtain connections from JNDI However the API doc for DataSourceUtils does not include the said static ...
3
votes
1answer
2k views

Which JMS ConnectionFactory shouuld one use on JBoss 5.1?

I have generic question on using JMS provided by JBoss 5.1. I deploy my JEE application (implemeneted using Spring Framework) on JBoss 5.1. The application is using Spring to consume messages from ...
3
votes
1answer
1k views

Accessing a JNDI DataSource without the java:comp/env prefix

I've noticed that both ways of looking up a DataSource using JNDI work: jdbc/DataSource java:comp/env/jdbc/DataSource With the added bonus that the first one doesn't seem to anger Websphere when ...
3
votes
2answers
366 views

How can I spoof a jndi lookup for a datasource without a app server

I want to test some new functionality which is part of an internal web app. This new code uses a database connection normally provided by an app server (tomcat). I do not want to recreate the entire ...

1 2 3 4 5 13