2010
01.06

How to Use Jasper Report with ASP.NET

I searched the “Internets” (with a grin to GWB), but found nothing. So this post is a placeholder for whatever findings in my future research.

Bear with me please :)

Update: 11-Jan-2009

There’s a glimmer hope by using direct HTTP post to the Jasper Report’s web service using techniques described here:

By using above method, we will get the full stream of the response. Now the problem is how to separate the binary data and the text data.

Update: 12-Jan-2009

Found a clue on how to read mixed binary data and text: What’s the best way to read mixed (i.e. text and binary) data

Update: 19-Jan-2009
I have successfully use ASP.NET to invoke Jasper Report web service, and obtain the PDF/XLS/CSV file. The solution is now still very crude, I’m gonna need sometime to clean it up.