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