Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use varnish cache some file like *.doc *.png *.xls.

It work well while I get files from cache but *.xls.

My URI is like /attachment/show?fileId=ewer232ewe2121eeddsd. When I request a .xls file from cache, it will return a file named show whitout extension.

My server code is:

if (StringUtil.null2Trim(attachment.getExtension()).equals("doc")
                    || StringUtil.null2Trim(attachment.getExtension()).equals("docx")
                    || StringUtil.null2Trim(attachment.getExtension()).equals("xlsx")
                    || StringUtil.null2Trim(attachment.getExtension()).equals("xls")) {
                response.setHeader("Content-Disposition", "attachment; filename=\""
                        + StringUtil.gbk2Iso(attachment.getName()) + "\"");
                if (StringUtil.null2Trim(attachment.getExtension()).indexOf("doc") != -1) {
                    response.setContentType("application/msword");
                }
                if (StringUtil.null2Trim(attachment.getExtension()).indexOf("xls") != -1) {
                    response.setContentType("application/vnd.ms-excel");
                }

            } else {
                if (StringUtil.null2Trim(attachment.getExtension()).equals("jpg")) {
                    response.setContentType("image/jpeg");
                } else if (StringUtil.null2Trim(attachment.getExtension()).equals("png")) {
                    response.setContentType("image/x-png");
                } else {
                    response.setContentType("image/" + attachment.getExtension());
                }
            }

My question is:Why can't I get the correct file full name like attachment.getName()+".xls", and how to solve it.

PS: Is there any way to set ContentType in varnish(vcl)?

share|improve this question
1  
This sounds like a problem with the backend server applet, not Varnish. What are the exact headers returned by the server? – Ketola Oct 23 '12 at 7:22
@Ketola Yes, the server set incorrect headers.Now it works well. – lichengwu Oct 24 '12 at 2:45

1 Answer

up vote 1 down vote accepted

Let me answer the last question; you can override any HTTP response header in Varnish.

Use the following VCL snippet:

sub vcl_fetch {
    if (req.url ~ ".xls$") {
        set beresp.http.content-type = "application/vnd.ms-excel";
    }
}

In general you can add and remove headers at will by doing "set beresp.http.XXX = YYY;" or "unset beresp.http.XXX;" in vcl_fetch.

For your main question, I'd explore if adding a MIME envelope (header example here) helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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