transform seamlessly http synchronous call to jms asynchronous
Hello, I deployed a webservice (trestquest) that make some stuff and send response back (trestresponse). Every thing is synchronous. I would like to transform the process as below :
[list=*]
get the webservice call (with correlationID from trestrequest)
forward the call to a message broker
listen to the message broker and get the message back matching the correlationID
send response back (trestresponse)
Is that possible ? If yes, how would you design that type of job ?