Properties cfProps = new Properties();
cfProps.put("user", dbUser);
cfProps.put("password", dbPass);
// create the connection factory
ConnectionFactory cf = new DriverConnectionFactory(jdbcDriver, dbUri, cfProps);
// wrap it with a LocalXAConnectionFactory
XAConnectionFactory xacf = new LocalXAConnectionFactory(txMgr, cf);
// configure the pool settings