Jump to content
We've recently updated our Privacy Statement, available here ×

Integration in to ASP.NET MVC


MK_Tracker

Recommended Posts

HI,

I have been asked to look for a report engine to integrate in to one of our products which is based on ASP.NET MVC. I ahve been trying Jasper reports from last 1-2 days.

Could you please help me in understanding the way we can integrate this in to ASP.NET MVC application ? An example would really help in this regard

Thank you

 

Link to comment
Share on other sites

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

There are 2 ways - (1) use JasperReports Server REST API, (2) use Visualize.js to embed reports into HTML pages.

As an example, following URI will return a pdf report. You can write your application to process the returned report.

http://localhost:8080/lakeelbi/rest_v2/reports/public/diagnostic/JSDiagnosticReport.pdf

Following will return a report in html format:

http://localhost:8080/lakeelbi/rest_v2/reports/public/diagnostic/JSDiagnosticReport.html

(2) Visualize.js is just a JavaScript utlity to call the REST API to generate a report in a specified <div>

 

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...