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 |
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.Context.bind(String name, Object o) Context.rebind(String name, Object o) Context.lookup(String name)
To obtain a context from PAS, Do the following:
And that's all you have to do.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);