MSMQ Processing Agent
The MSMQ processing agent enables the user to forward a message to the MSMQ queue server.
For example, consider this workflow:
MSMQ Processing 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”);
}
}