Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client Java API Programmer's Guide | Using Request-Reply | The Server | Delivering Replies | Delivering Null Replies
 
Delivering Null Replies
The server application can deliver a null reply if the request was successfully processed and there is no data to be returned. When invoking the BrokerClient.deliverNullReplyEvent method, you can either specify a valid publish sequence number or specify a value of zero if you do not want to use publish sequence numbers. For more information, see Using Sequence Numbers.
. . .
try {
c.deliverNullReplyEvent(e,"Sample::Reply",0);
} catch (BrokerException ex) {
. . .
}
. . .