I have a web service(jboss seam) which consume requests, it further delegates its work to different seam components. One of the seam component has event generation capability as Events.instance().raiseTransactionSuccessEvent, the method which is listening to this event does not get invoked.
Am i missing any configurations?
Please suggest
I figured it out.
The conclusion is never to mix ejb transaction with seam transactions.
I explicitly disable the ejb trasaction management in the ejb.
It worked!!.