Hi at all
I have a little problem:
I have a action configured with these params:
<action name="exportCSV" class="it.asd.ExportAction">
<interceptor-ref name="defaultLoginStack" />
<interceptor-ref name="execAndWait"/>
<result name="success" type="stream">
<param name="contentType">application/x-zip-compressed</param>
<param name="inputName">fileStream</param>
<param name="contentDisposition">attachment;filename="${filename}"</param>
<param name="bufferSize">2048</param>
</result>
<result name="wait" type="tiles">waitPage</result>
<result name="error" type="redirectAction" >visualizzaasd</result>
</action>
I want that, after downloading, page returns to another and not remain on the waitpage.
Thanks!