I know this question would have been asked several time but still I am not getting any solution to this problem..

I want both browser IE8, Mozilla to force download XML file as an attachment. But Mozilla opens the XML file in the browser itself and IE8 also try to render XML file on screen but render it incorrectly.

Here is my code in spring 3 controller.

Pmd17Export export=exportService.getFlatFile(dbdto.getExportFileId());
IOUtils.copy(export.getFlatFile().getBinaryStream(), response.getOutputStream());
response.setContentType("application/octet-stream");      
response.setHeader("Content-Disposition",
                   "attachment;filename=" + export.getFlatFileName()); 
response.flushBuffer();

Note : In browser I am first doing js validation then Submitting the form using jquery

function validate() {
    //validate form
    if(noerror) {
        $("form").submit();
    }
}

Attaching request and response header what i can see in firebug

Response Headersview 
Date    Fri, 03 Feb 2012 12:55:42 GMT
Server  Apache-Coyote/1.1
Transfer-Encoding   chunked

Request Headersview 
Accept  text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Charset  ISO-8859-1,utf-8;q=0.7,*;q=0.7
Accept-Encoding gzip, deflate
Accept-Language en-us,en;q=0.5
Connection  keep-alive
Cookie  JSESSIONID=5ED81A79A2297AD044E6DBB2B90806E7
Host    localhost:8080
Referer http://localhost:8080/dbcomparision/app/exportdatabase.html
User-Agent  Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1
Request Headers From Upload Stream
Content-Length  15
Content-Type    application/x-www-form-urlencoded

Please tell me how can I force both browser to download this file.

link|improve this question

44% accept rate
What server instance are you running the spring controller on? – Sean Blaney Feb 3 at 10:05
@Sean Blaney...its Apache tomcat 6.0..any solution u know.. – Rajesh Feb 3 at 10:25
Do you have mod_headers enabled - if not setting the headers from tomcat will most likely silently fail. – Sean Blaney Feb 3 at 10:34
@Sean Blaney how to enable mod_headers in tomcat? – Rajesh Feb 3 at 11:03
Unable to download xml file in IE,at least mozilla is rendering the xml properly on screen,but IE is not at all rendering it properly on screen..The screen remains empty in case of IE and using IE developer tool I can see wired xml format in the body..I mean the Body tag of html stores some segment of XML file...and response.setContentType("content-disposition","attachment;filename=")..is not at all working as if the response headers are not getting changed.. – Rajesh Feb 3 at 14:58
feedback

1 Answer

up vote 0 down vote accepted

Don't you need to set the headers before you send the data? I.E.

response.setContentType("application/octet-stream");      
response.setHeader("Content-Disposition",
                   "attachment;filename=" + export.getFlatFileName()); 
IOUtils.copy(export.getFlatFile().getBinaryStream(), response.getOutputStream());
link|improve this answer
you are awsome..simly amazing..thanks...So simple and best solution.. – Rajesh Feb 4 at 7:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.