When a report loads data from a protected JSON endpoint, you can attach authentication headers in the onBeginProcessData event.

Add custom headers before the data request.
var report = new Stimulsoft.Report.StiReport();

report.onBeginProcessData = function (args) {
    if (args.database === "JSON" && args.command === "GetData" &&
        args.pathData && args.pathData.indexOf("/reports/ProtectedDemo.json") >= 0) {
        args.headers.push({ key: "X-Auth-Token", value: "*YOUR TOKEN*" });
    }
};

report.loadFile("../reports/SimpleListWithProtectedJson.mrt");
report.renderAsync();

How it works. The engine applies the headers to its data request, so the report can read endpoints behind token or session protection.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.