users@glassfish.java.net

Re: EJB CMT TransactionAttributeType.REQUIRES_NEW doesn't work.

From: <glassfish_at_javadesktop.org>
Date: Mon, 26 Jul 2010 06:42:53 PDT

The problem is with the app.

When T1() calls T2(), you are making a java invocation, not ejb invocation. You will need to get a ejb ref first and call T2 on it. For ex:

ctx.getBusinessObject(MyBusinessInterface.class).T2();
[Message sent by forum member 'cf126330']

http://forums.java.net/jive/thread.jspa?messageID=478573