Process webhook data

Company news, product updates, and practical articles from DB Software Laboratory.

Advanced ETL Processor
4.9 ★★★★★ Based on 16 reviews on Capterra See all reviews on Capterra →

Url Logger - 1.0.4 is ready for the users

In this version we have added support for custom script execution.

Webhook

This opens a whole new world of possibilities, for example this script executes Advanced ETL Processor package:

const execFileSync = require('child_process').execFileSync;
try {
// This script might hung so always specify a timeout
const fileToExecute = '"C:\\Program Files (x86)\\DB Software Laboratory\\Advanced ETL Processor Enterprise\\aetlcl.exe"'
const objectId = 6687;
const parameters = [objectId];
const timeout = 60; //seconds
const stdout = execFileSync(fileToExecute, parameters, { shell: true, timeout: timeout*1000 });
} catch (e) {
logger.error(e.message);
return 500;
}
return 200;

Next step

See the related product page for current features, editions, and trial downloads.

Direct link, no registration required.