context.bind("dir1/second", new String("first"));
context.bind("dir1/third", new String("first"));
Context ctx = (Context)context.lookup("dir2");
ctx.bind("first", new String("first"));
ctx.bind("second", new String("first"));
ctx.bind("third", new String("first"));
}
System.out.println("================JNDI CONTENT START=============");
JndiDumper.scanContext(null, context, System.out);