} catch (NamingException e) {
throw new IllegalStateException("Unable to obtain CDI BeanManager", e);
}
// Configure CDI, disabling Conversations as we aren't using them
new CdiConfiguration(bm).setPropagation(NONE).configure(this);
// Mount the InsertContact page at /insert
mountPage("/insert", InsertContact.class);
}