requestReply procedure
- Last Updated: August 26, 2021
- 1 minute read
- OpenEdge
- Version 12.2
requestReply procedure
Creates a temporary queue or topic and sets
the JMSReplyTo message header field. Then requestReply
procedure sends the message to the destination specified
and designates the messageConsumer parameter
for processing replies.
Syntax
|
Applies to
Session objects
Notes
- The term destination is used for both topics and queues.
- The ABL–JMS implementation automates the request/reply sequence:
- Sending a reply by setting the reply
OUTPUTparameter of the message handler - Requesting a reply by calling #rfi1387308549858 with a reply Message Consumer
- Sending a reply by setting the reply
- The ABL–JMS implementation uses a temporary destination for
the reply. It is an error to set the
JMSReplyTofield of the message explicitly ifrequestReplyis used. The reply is received by messageConsumer asynchronously, just like any other message reception. The temporary destination is deleted when the Message Consumer object is deleted. - This procedure executes remotely on the Progress OpenEdge JMS Adapter.
See also
For more information, see the Request/Reply.