MSMQ Processing Agent

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-agent.png

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”);         } }

The section has the following subsections: