dev garg
dev garg

Reputation: 13

execute and download jasperserver report through url

Is there any way to execute and download the report on jasperserver through single url ? I am able to login and open the report url and pass the parameters, all is set but i need to execute it and download it in excel format.

http://jasperserver_url.com/jasperserver/flow.html?_flowId=viewReportFlow&j_username=username&j_password=password&ParentFolderUri=%2FReports&reportUnit=%2FReports%2FMy_Report&parameter1=param1&decorate=no

Do I need to pass some more parameters ? Or some other way is there ?

Upvotes: 1

Views: 1094

Answers (1)

Jigar Mehta
Jigar Mehta

Reputation: 133

Append "&output=excel" in your report URL for downloading it in Excel format.

For Example:

Use this URL:

http://jasperserver_url.com/jasperserver/flow.html?_flowId=viewReportFlow&j_username=username&j_password=password&ParentFolderUri=%2FReports&reportUnit=%2FReports%2FMy_Report&parameter1=param1&decorate=no&output=excel

Upvotes: 1

Related Questions