You don't need to use the Arjuna Transactional Driver. This is the point of 
JCA, we do this for you. 

Your lookup would be: 


  |   
  | InitialContext ctx = new InitialContext();
  | DataSource ds = (DataSource)ctx.looking("java:/BasicService01DS");
  | Connection conn = ds.getConnection()
  | 
  | 

JCA handles transaction enlistment for you so there is no need for a special 
wrapper in this case. 



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990546#3990546

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3990546
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to