*/
private static final MemoryContext createMemoryContext()
{
final DefaultNamespace namespace =
new DefaultNamespace(new DefaultNameParser());
MemoryContext me = new MemoryContext(namespace, new Hashtable(), null);
try
{
Context testContext = me.createSubcontext("test");
testContext.bind("key", "jndivalue");
testContext.bind("key2","jndivalue2");
testContext.bind("short","1");
testContext.bind("boolean","true");
testContext.bind("byte","10");