final NamingContextExt corbaContext = corbaNamingContext.getValue();
// Unregister bean home from local CORBA naming context
try {
NameComponent[] name = corbaContext.to_name(this.name);
corbaContext.unbind(name);
} catch (InvalidName invalidName) {
logger.error("Cannot unregister EJBHome from CORBA naming service", invalidName);
} catch (NotFound notFound) {
logger.error("Cannot unregister EJBHome from CORBA naming service", notFound);
} catch (CannotProceed cannotProceed) {