*/
private JABConnectionFactory() throws JABException {
try {
connectionFactory = ConnectionFactory.getConnectionFactory();
} catch (ConfigurationException e) {
throw new JABException("Could not create the connection factory: "
+ e.getMessage(), e);
}
JABSessionAttributes attributes = new JABSessionAttributes();
session = new JABSession(attributes);
}