}
private void createConnection() throws NamingException, JMSException {
ConnectionFactory connectionFactory = (ConnectionFactory)jndiLookUp(connectionFactoryName);
if (connectionFactory == null) {
throw new JMSBindingException("connection factory not found: " + connectionFactoryName);
}
connection = connectionFactory.createConnection();
}