EJB Spec Pg 351 says that:
"For a session bean, the transaction attributes must be specified for the methods defined in the bean�s component interface and all the direct and indirect superinterfaces of the component interface, excluding the methods of the javax.ejb.EJBObject or javax.ejb.EJBLocalObject interface. Transaction attributes must not be specified for the methods of a session bean�s home interface."
So you have to specify some transaction attribute but when using SessionSynchronization it must be either "Required", "RequiresNew", "Mandatory". See spec pg 352 5th Paragraph.
Sudhir V<br />(SCJP 1.2, SCWCD, OCA, SCBCD)