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

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

share|improve this question
What specific problem are you having? What does/doesn't happen? – Dave Newton Feb 18 at 17:04

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.