Reply To


Type:
Identifier of C type T_STR
Default Value:
NULL
Valid Values:
Any character string

The reply to property identifies where a reply to a message should be sent. This is used if the reply should be sent to a destination or subject other than the sender. For example, some RT processes, like the gateway, change the sender property when they re-route a message. If you want a reply to be sent to the original sender, you need to set the reply to property to the destination or subject of the sender. For a discussion of subjects, see Subjects.

Function to set value:

TipcMsgSetReplyTo. For example:

if (!TipcMsgSetReplyTo(msg, "reply_subject")) { 
  /* error */ 
} 
Function to get value:

TipcMsgGetReplyTo. For example:

T_STR reply_to_dest; 
if (!TipcMsgGetReplyTo(msg, &reply_to_dest)) { 
  /* error */ 
} 

TIBCO SmartSockets™ User’s Guide
Software Release 6.8, July 2006
Copyright © TIBCO Software Inc. All rights reserved
www.tibco.com