Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client Java API Programmer's Guide | Using Request-Reply | The Server | Delivering Replies | Delivering One or More Reply Events
 
Delivering One or More Reply Events
The server application can deliver one or more reply events in response to a single request event, as shown in the following example.
. . .
BrokerEvent replies[];
. . .
/* prepare the reply events */
. . .
/* deliver the replies */
try {
c.deliverReplyEvents(e, replies);
} catch (BrokerException ex) {
. . .
}
. . .