// check to see if we have all the args we need to rebind
if (v.isEmpty())
throw new CommandException(new Exception(), "No names specified");
String name = (String)v.firstElement();
try {
c.unbind(name);
System.out.println("Unbound the object " + name);
}
catch (NamingException ne) {
throw new CommandException (ne, "Couldn't unbind " + name);
}