The MSMQ processing agent enables the user to forward a message to the MSMQ queue server.
For example, consider this workflow:
Example: Sending messages to an MSMQ server
consume {
if (instanceOf(input, httpd)) {
MSMQ msg = udrCreate(MSMQ);
msg.label = “Test Label”;
msg.body = “Test body current TS = “ + dateCreateNow();
msg.Context = input;
udrRoute(msg, “queue”);
}
}
To configure the MSMQ Processing Agent, refer to 9.54.3.1 MSMQ Processing Agent Configuration.