this.properties = properties;
try {
jmsManagement = new JMSManagement(properties);
} catch (Throwable t) {
throw new ConfigurationException(
"Could not create the required connection", t);
}
try {
orbManagement = new OrbManagement(properties, false);
} catch (Throwable t) {
throw new ConfigurationException(
"Could not create the orb management function", t);
}
log.debug("Created OrbManagement");
}