mahor mahor

Greenhorn
+ Follow
since Apr 01, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by mahor mahor

Do you have an EntityManager in your MDB ?

Use this annotation in your MDB
@TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)

and this where you want to create a transaction
@TransactionAttribute(TransactionAttributeType.REQUIRE_NEW)


Try

@TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)

in your MDB class.