props.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
props.put(Context.PROVIDER_URL, "localhost:1099");
Context ctx = new InitialContext(props);
CacheObjectMeanTesterHome home = (CacheObjectMeanTesterHome)ctx.lookup(
CacheObjectMeanTesterHome.JNDI_NAME);
CacheObjectMeanTester cacheTest = home.create();
cacheTest.bind("id12345");
}