MSMQ Processing Agent (4.0)

The MSMQ processing agent enables the user to forward a message to the MSMQ queue server.

For example, consider this workflow:

image (2).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");

        }

}

For information on how to configure the MSMQ Processing Agent, see .