vote up 1 vote down star

We have Flex on the front end and Java on the back end. When a user will request for a PDF file, request will go to the Java backend, where a PDF file will be generated using Jasper Reports. What we dont know is how to display this PDF file in browser; since we dont want to use JSP/Servlets etc - It has to be flex only. Any suggestions?

flag

45% accept rate
How are you communicating between Flex and Java now? – Mike Sickler Mar 3 at 15:50

3 Answers

vote up 1 vote down

Flash Player cannot natively render PDF files. This is possible using Adobe AIR but not in a Flex application. Your best bet is to call navigateToURL() and open a Servlet in a new browser tab/window. The Servlet can simply write contents of the PDF file to the OutputStream and set the appropriate HTTP headers.

link|flag
vote up 0 vote down

Well for starters, PDFs don't always display in the browser. It depends on the user's settings. You essentially header them the pdf file and either they download it or a program like Acrobat Reader opens in the browser to display it.

Not sure how this is done in flex, I would imagine if you're using Java one simple servlet could do it.

link|flag
Yes, you are right. I meant that only, may be it was not clear. With Servlets it's simple, but we want to avoid that for reasons unknown to me :) – Akshay Mar 3 at 14:34
vote up 0 vote down

Have you had a look at http://www.jpedal.org/FlexViewer/RC1/Viewer.html ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.