Developed based off a customer feature request.
PostScript has been added as an additional output format. This format is commonly used with printers and printing companies.
Modify the extension of the output report to be “ps”. For example:
java net.windward.xmlreport.RunReport InternetMarketingReport.docx testreport.ps -xml:INTMARKETING InternetMarketingData.xml
Modify the extension of the output report to be “ps”. For example:
RunReport.exe InternetMarketingReport.docx testreport.ps -xml:INTMARKETING InternetMarketingData.xml
ProcessReportAPI report =new ProcessPostScript(template, output);
Report report = new ReportPostScript(template, output);
In the request body sent to the RESTful engine server, set the “OutputFormat” value to “ps”. For example, a snippet of the request body:
...
<outputformat>ps</outputformat>
...