Hi,
i have one method in stateless session ejb,i want that method to not to have the transaction for it, But it calls two other methods of same been with diffrent transaction attributs (may be each have required tnx attribute) i repeat in same ejb from where the first method is called. like
in single EJB If i have method
// steteless session ejb starts
//with "Never" as a transaction attribute
pubilc myMethod(){
firstTxn()
secondTxn()
}
//with "required" txn
public firstTxn(){
}
//with "required" txn
public secondTxn(){
}
////ejb ends
client calls myMethod()
i wana know how trxn will propogate in this scenario..
For me in weblogic 8.1 it does not gives any transaction to firstTxn() and secondTxn()
But if i call then with again looking up for home and getting remote/
local interface then making call for firstTxn() and secondTxn() it is working fine.
I wanted to know "Is transaction does not change once it gets first call for it with perticular txn attribut even it calls methods of same ejb with different tnx attributs for method with in it???"
Thanks!!
Sandeep vaid
[ July 15, 2005: Message edited by: sandeep vaid ]