am planning to implement Service Activator for MDB. I have JMS Queue in the application server. JMS Queue receives jms request with xml payload. Once it receives the request, calls MDB in the application server for business processing. Again MDB calls Stateless Session Bean and Entity Bean (Session Facade). Is it right approach ?
Yes, you have the advantage of using CMT in this approach that ties
jdbc calls (from the ejbs) to message delivery (to the mdbs).
ram.