Skip to main content
Version: 8.1

system.util.sendMessage

This function is used in Python Scripting.

Description​

This function sends a message to clients running under the Gateway or to a project within the Gateway itself. To handle received messages, you must set up event script message handlers within a project. These message handlers run Jython code when a message is received. You can add message handlers under the "Message" section of the client/Gateway event script configuration dialogs.

Messages cannot be received within a Designer. However, messages can be sent within the Designer in a script (assuming that read/write comm is enabled).

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.util.sendMessage(project, messageHandler, [payload], [scope], [clientSessionId], [user], [hasRole], [hostName], [remoteServers])

Parameters​

TypeParameterDescription
StringprojectThe name of the project containing the message handler.
StringmessageHandlerThe name of the message handler that will fire upon receiving a message.
Dictionary[String, Any]payloadA dictionary which will get passed to the message handler. Use "payload" in the message handler to access dictionary variables. [optional]
StringscopeLimits the scope of the message delivery to "C" (clients), "G" (Gateway), "CG" for clients and the Gateway, or "S" Session. Any combination of C, G, and S are available. Defaults to "CS" if the user name, role, or host name parameters are set, and to "CGS" if none of these parameters are set. [optional]
StringclientSessionIdLimits the message delivery to a client with the specified session ID. [optional]
StringuserLimits the message delivery to clients where the specified user has logged in. [optional]
StringhasRoleLimits the message delivery to any client where the logged in user has the specified user role. [optional]
StringhostNameLimits the message delivery to the client that has the specified network host name. [optional]
ListremoteServersA list of Strings representing Gateway Server names. The message will be delivered to each server in the list. Upon delivery, the message is distributed to the local Gateway and clients as per the other parameters. [optional]

Returns​

List - A List of strings containing information about each system that was selected for delivery, where each List item is comma-delimited.

Scope​

Gateway, Vision Client, Perspective Session

Code Examples​

Example #1
# Simple message to both Client and Gateway handlers.
project="X"
# It's important that both Gateway and Client versions of this message handler have been created.
messageHandler="myMessageHandler"
scope="CG"
myDict = {'first': "Hello", 'second': "World"}
results=system.util.sendMessage(project,messageHandler,myDict,scope)

# Assuming that there is one local client running project X, the results List will contain these Strings:
#type=Gateway,project=X,messageHandler=testHandler,filterParams={hostName=, clientSessionId=, scope=CG, user=, hasRole=},sendStatus=SENT

#type=Client,sessionId=65F7A472,clientAddress=127.0.0.1,clientHostName=127.0.0.1,project=X,messageHandler=testHandler,filterParams={hostName=, clientSessionId=, scope=CG, user=, hasRole=},sendStatus=SENT
Example #2
# Message to client handlers only where a specified user is logged in)
system.util.sendMessage(project="X",messageHandler="myMessageHandler",scope="C",user="Bob")
Example #3
# Message to remote servers over the Gateway Network (since 7.8.2)
servers = ["agent-8088", "agent-9000"]
system.util.sendMessage(project="X",messageHandler="myMessageHandler",remoteServers=servers)

Keywords​

system util sendMessage, util.sendMessage