| Article: |
Designing Messaging Applications with Temporary Queues | |
| Subject: | NIce article | |
| Date: | 2007-04-22 02:05:18 | |
| From: | iguane18 | |
|
Very interesting. If I did understand clearly, it is an elegant way to create asynchroneous req/resp. in a distributed architecture. It lakes the client receiving the response but that's ok. |
||
Showing messages 1 through 1 of 1.
-
NIce article
2007-04-22 07:15:19 ThribhuvanThakur [View]



Client receives the response synchronously-make a request and wait for the reply. The way you accomplish it is by passing in the name of the temporary destination as a header field (JMSReplyTo), as part of a message. The value of this header field is later used by the receiving party to send the reply as explained in the ‘Temporary Destinations: An Overview’ section.
Please let me know if I answered your questions.