com.protomatter.pas.jndi
Downloads Source Javadoc
Author: Unspecified
Home Page:
Version: Unspecified
Release Tag: Unknown
Release Date: Unknown
JVM Required: Unspecified
License: GNU Library General Public License
Categories: None
Requirements:
Dependencies: No dependencies
Externals: None

The JNDI implementation provided by PAS.
JNDI

PAS provides a very simple (and incomplete) implementation of the JNDI 1.1.1 SPI interfaces. The following methods are supported:
     Context.bind(String name, Object o)     Context.rebind(String name, Object o)     Context.lookup(String name)     
Which is enough to get most things done. A full implementation of the 1.1.1 SPI interfaces is planned, but will not be completed until there's a real need for it.

To obtain a context from PAS, Do the following:

     import javax.naming.*; // JNDI stuff      ...      Hashtable env = new Hashtable();     env.put(Context.INITIAL_CONTEXT_FACTORY,       "com.protomatter.pas.jndi.spi.PASInitialContextFactory");     Context context = new InitialContext(env);     
And that's all you have to do.


Downloads

The following page lists the available downloads for the release of package 'com.protomatter.pas.jndi' tagged 'Unknown'. If you need to work with releases other than 'Unknown', you will need to use the anonymous CVS server to access them.