Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

my application has fileUpload functionality, right now

when user submits, it opens an excel sheet (Jasper reports) but it never says whether it is success or not. And once we close or save the report, we need to click back and forward to upload second file.

I am trying to show messages on the view with export button.click on button should pop-up the report.

my flowscope variables looks like this: first two are for messages which is good but the next two I cannot access from jsp

context.getFlowScope().put("resultMessages", resultMessages);
context.getFlowScope().put("scanDataHolder", scanDataHolder);
context.getFlowScope().put("format", "csv");
context.getFlowScope().put(JRParameter.REPORT_DATA_SOURCE, collection);

in my webflow.xml:

<transition on="process" to="fileUpload">
    <evaluate expression="fileUpload.process(context, data)"/>
</transition>
<transition on="export" to="excel">

excel takes to jasper report view..

fileUpload is the main view name, so when I redirect to same page, other flowscope variables might be clearing?

but, I need them to use when user clicks on export button.

if we comment the flowscope for resultmessages, we can see the report. But, need both...

Any suggestions is appreciated!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.