Job to Test AIF Services - Debug AIF
We can debug and test AIF Services via this job code manually.
static void
JobTest(Args _args)
{
AifOutboundProcessingService service;
AifGatewaySendService send;
service = new
AifOutboundProcessingService();
send = new AifGatewaySendService();
service.run();
//send.run();
//service.run();
}
Comments
Post a Comment