sending jms message via JmsTemplate from EJB
hi all,
my case is as below:
1. im calling stateless Session Bean (using container transaction as required)to send jms message via JmsTemplate (im not using spring transaction management).
2. wait for output (in file system) of MDB (from step 1).
3. send response.
when i deploy this model on weblogic (10.3) it works fine; but once im doing it on websphere (7.0) the JmsTemplate is not sending the message.
i did debuging and investigations, seems that session is not sending message till the transaction is commited.
but how its working fine in weblogic? and how i can resolve this issue to work fine in websphere as well ?
thanks in advance;