I want in struts.xml input as type interceptor-ref name="json" and result as type stream single action like :
<action name="downloadAction" method="download" class="DownloadAction">
<interceptor-ref name="json">
<param name="contentType">application/json</param>
</interceptor-ref>
<result name="SUCCESS" type="stream">
<param name="contentType">${contentType}</param>
<param name="inputName">inputStream</param>
<param name="contentDisposition">attachment; filename="${fileName}"</param>
</result>
<result name="ERROR" type="tiles">/jsp/export.jsp</result>
</action>
for me input is going as JSON but data i am not able to download as stream type. how can i combine the interceptor json and result type stream together if this is not the correct way?
Thanks Sherry