In many of my JSP files I invoke the .remove() method on an EJB to get it
permanently deleted. Sometimes, however, the EJB is NOT deleted even though
I get no error messages. So, has anyone experienced that this does not
always work:

while(myIteratorOfSomeEJBs.hasNext())
        ((EJBObject) myIteratorOfSomeEJBs.next()).remove();

I was thinking that maybe it did not work because of some transactional
issues (maybe rollbacks happens under some circumstances) - but since I get
no error messages, I don't know if this is the case.


R.


Reply via email to