public void rollbackAfterCancelEntity()
throws Exception
{
InitialContext iniCtx = new InitialContext();
TimerEntityHome home = (TimerEntityHome) iniCtx.lookup(TimerEntityHome.JNDI_NAME);
TimerEntity bean = home.findByPrimaryKey(new Integer(1));
bean.cancelFirstTimer();
context.setRollbackOnly();
}