�I have a method in my entity bean that calls a stored procedure. Now this stored procedure fails when run in a transaction context, but works fine otherwise.Hence I want to restrict this
ejb method from participating in any transaction,. Though the ejb has container managed transaction�?Is it possible.
I tried out using �never� for that method in ejb-jar.xml,�but still that method gets associated with a transaction context and the stored procedure throws error??
How can I avoid this.Any pointers will be appreciated.?