java ee - Asynchronous JMS Request-Reply -
what's best way implement asynchronous request reply pattern jms (preferably jms 2.0).
for example:
- receive request async jaxrs service
- send message jms queue
- wait reply (2)
- send response client (1)
i see how implement using temporary queue request. some documentation says it's not pattern posted message see if there better alternatives.
the problem see other recommended alternatives jms producers , consumers not thread safe using 1 per client more changeling.
Comments
Post a Comment