Download on Internet explorer not working

0
Hi, In my app, users are allowed to do calculations and download a system generated report and some pdf brochures. In Firfox and Chrome users are able to download these files correctly. In Internet explorer though when pushing the download button, a message pops up saying IE has blocked the download and when selecting Download, the browser refreshes and takes me back to the homepage without downloading the file. You have to press the download button again to make it work, the only problem is that our users have limited chances running the app and have by then used their 1 of 2 chances to run the app. Is there any solution to this as most of our clients use IE as a base browser.
asked
1 answers
4

A file download can be triggered in two ways: using the file manager widget, or using the download file activity in a microflow. I guess you are using the latter, what could explain IE7 and IE8 asking for permission.

When a download is triggered by microflow, the server tells the client to download a file. Because IE does not know this download has anything to do with the user clicking on a microflow button, IE gets suspicious and will ask for permission. This is a good thing really. Unfortunately, IE will need to reload the entire page with the new permissions when they change.

To avoid IE getting suspicious, the file manager widget could be used. Now IE will recognize the file download being initiated by the user, and will not ask for permission. The downside of this approach is that the file should already exist so you probably would have to split up the file creation and file download.

answered