Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

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.

  • No labels