*/
@Test
@Ignore("SUN JDK 6 is happy with all kind of names")
public void test_invalidBindingName() {
try {
TestInterface servant = new TestInterfaceServant();
host.registerServant("---", servant);
fail();
} catch (CorbaHostException e) {
assertTrue(e.getMessage().equals(CorbaHostException.WRONG_NAME));
} catch (Exception e) {