system.util.sendRequest(project, messageHandler, payload, remoteServer, timeoutSec)
String project - The name of the project containing the message handler.
String messageHandler - The name of the message handler that will fire upon receiving a message.
PyDictionary payload - Optional. A PyDictionary which will get passed to the message handler. Use "payload" in the message handler to access dictionary variables.
String hostName - Optional. Limits the message delivery to the client that has the specified network host name.
String remoteServer - Optional. A string representing a target Gateway Server name. The message will be delivered to the remote Gateway over the Gateway Network. Upon delivery, the message is distributed to the local Gateway and clients as per the other parameters.
String timeoutSec - Optional. The number of seconds before the sendRequest call times out.
Object - The return from the message handler.
All