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 Current »

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 9.53.3.1 MSMQ Processing Agent Configuration.



  • No labels