Hi, I am trying to debug the FDS HibernateAssembler. I have put the HibernateAssembler HibernateManager HibernateType java files into my own package and adjusted dependencies accordingly.
I am unable to build because of the following problem. The HibernateManager.getSession() method contains the following line of code: if (!syncSession && DataServiceTransaction.getCurrentUserTransaction() != null) syncSession = true; I get the following two build errors: 1) The project was not built since its build path is incomplete. Cannot find the class file for javax.transaction.UserTransaction. Fix the build path then try building this project 2) The type javax.transaction.UserTransaction cannot be resolved. It is indirectly referenced from required .class files I can't find anything which seems to contain the UserTransaction code or interface. Anyone know what I need to do to my Eclipse project dependencies to have this compile? SP

