not sure but i think what happens is the the call you make for update() are not recognized
by the container as ejb calls and that's why a new transaction is not opend.
think you need to get a ref to this ejb using the session context and invoke update using
it. should look something like thatYourLocalSession localRef = context.getBusinessObject(
YourLocalSession.class );
| for...
| {
| localRef .update();
| } // end for
hope it helps,
zilbi
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4170434#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...