I'm studying a piece of valid code wrote by some guy. The above mentioned client-side application tries to look up a ConnectionFactory in the JNDI context without the PROVIDER_URL which you told to me:InitialContext initCtx = new InitialContext();
MyConnectionFactory cf = (MyConnectionFactory) initCtx.lookup( "java:comp/env/eis/local/ABC"); Here is my question, does it mean the client-side application is trying to look up a resource in a local JNDI context? Back to the question before, does client container provide JNDI services?