MSMQ Processing Agent (5.0)
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");
}
}
For information on how to configure the MSMQ Processing Agent, see MSMQ Processing Agent Configuration (5.0) .