*/
public JABSession(JABSessionAttributes attributes) throws JABException {
log.debug("JABSession constructor");
try {
jabSessionAttributes = attributes;
ConnectionFactory connectionFactory = ConnectionFactory
.getConnectionFactory();
connection = connectionFactory.getConnection();
} catch (Exception e) {
throw new JABException("Error connect to domain: "
+ jabSessionAttributes.getProperties().get(
"blacktie.domain.name"), e);
}