Skip to main content

Notifications

Announcements

No record found.

AIF: Execute messages on demand

Sometimes when you try to debug problems with an AIF message, you'd like to just execute it rather than wait for the batch server to pick it up.

This job can do just that. It requires the GUID of the message and a call to \Classes\AifInboundProcessingService\processAsUser:
static void debugAIF(Args _args)
{
AifMessageId messageId = str2guid("8D2D6B9C-B0A9-48FA-B58E-0CAAD415E65B");

AifInboundProcessingService::processAsUser([messageID]);
}

Comments

*This post is locked for comments