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