{
// Standard JNDI
Context ctx = new InitialContext();
ctx.unbind(NAME);
log.info("Unbound " + NAME + " from " + ctx);
ctx.unbind(BAD_BINDING);
log.info("Unbound " + BAD_BINDING + " from " + ctx);
// For some reason creating a context for our own JNDI doesn't work
// inside the server, so as a hack we directly deal with the NamingServer
// to bind the object