> file along with any errors in creating the csv files. I'm finding that my > ActionErrors do not get returned to my .jsp file after calling the setHeader > method and changing the header. Does anyone have any suggests on how to best > to return errors to the user keeping in mind I already have a
>From you action after setting the headers and I assume you also write the Zip file contents to the OutputStream how are you going back to the JSP. I guess you might be returning null, which indicates to Struts that the response is taken care of by the Action and so does nothing afterwards. I guess what you might want to do is that from a jsp, when the user clicks on the download link go to an action, which composes the errors and takes the user to another page which shows the errors (if any) and sends a request for the file to be downloaded through <META> tags.