private HashMap env;
static public class MyFactory implements InitialContextFactory {
public Context getInitialContext(Hashtable arg0) throws NamingException {
return new TestDirContext(new CompoundName("o=canam",
TestDirContext.SYNTAX)) {
public void close() throws NamingException {
throw new NamingException("exception");
};
};