Skip to content

Instantly share code, notes, and snippets.

@floverfelt
Created February 14, 2021 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save floverfelt/1249a5f9e362260e7388daa6904a2006 to your computer and use it in GitHub Desktop.
Save floverfelt/1249a5f9e362260e7388daa6904a2006 to your computer and use it in GitHub Desktop.
Fetch grid report data as json.
WebReportSource reportSource = adminSession.getFactory().getReportSource();
WebReportInstance webReportInstance = reportSource.getNewInstance("the-original-grid-id");
webReportInstance.setExecutionMode(EnumWebReportExecutionModes.REPORT_MODE_PLAIN_TEXT);
webReportInstance.getExportSettings().setMode(EnumDSSXMLExportFormat.DssXmlExportJSON);
webReportInstance.setAsync(false);
webReportInstance.pollStatus();
System.out.println(webReportInstance.getResultsAsJSON());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment