Hello,
I have developed a web service , with a JMS endpoint, developed as per this article:
https://docs.jboss.org/author/display/JBWS/SOAP+over+JMS
This works fine, using a standalone java program as my client.
Now, i want to understand how this design can be used to develop asyncronous web services, assuming that all clients are indeed java based.
Currently, the WS works the same as an http WS, as far synchronous/asynchronous nature is concerned.
What do i need to do, to let the client send the SOAP message to the JMS queue, and resume its work, and not wait for the WS to send back the reply?
Thanks!