vote up 2 vote down star

I have the following code that's essentially "proxying" a file from one server to another. It works perfectly in IE, but Firefox seems to ignore the Content-Type header and always transmits the files (MP3s) as text/html.

It's not a major issue, but I'd like to get it working correctly in all browsers, so can anyone assist? Also, if there is a better/more efficient way of accomplishing this, please post it!

FileInfo audioFileInfo = new FileInfo(audioFile);
HttpWebRequest downloadRequest = (HttpWebRequest) WebRequest.Create(audioFile);
byte[] fileBytes;

using (HttpWebResponse remoteResponse = (HttpWebResponse) downloadRequest.GetResponse())
{
  using (BufferedStream responseStream = new BufferedStream(remoteResponse.GetResponseStream()))
  {
    fileBytes = new byte[remoteResponse.ContentLength];
    responseStream.Read(fileBytes, 0, fileBytes.Length);

    Response.ClearContent();
    // firefox seems to ignore this...
    Response.ContentType = Utilities.GetContentType(audioFileInfo);
    // ... and this
    //Response.ContentType = remoteResponse.ContentType;
    Response.AddHeader("Content-Disposition", string.Format("attachment; filename=\"{0}\"", audioFileInfo.Name));
    Response.AddHeader("Content-Length", remoteResponse.ContentLength.ToString());
    Response.BinaryWrite(fileBytes);
    Response.End();
  }
}
flag

79% accept rate
1  
"It works perfectly in IE" IE tries to second-guess the content type from the first x bytes of the content, so you're probably sending the wrong type (or none) either way. – Sören Kuklau Aug 28 at 6:57
Both remoteResponse.ContentType and Utilities.GetContentType(audioFileInfo) return "audio/mpeg", which is correct for MP3s. – Ian Kemp Aug 28 at 7:10

5 Answers

vote up 3 vote down check

Try adding a Response.ClearHeaders() before calling ClearContents() like x2 mentioned and sending the file as application/octet-stream:

Response.ClearHeaders();
Response.ClearContent();
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment; filename=\"blah\""); 
...

Works for me when I need to transmit downloadable files (not necessarily mp3s) to the client.

link|flag
I'm not sure what Utilities.GetContentType(audioFileInfo) is returning, but the Loris' suggestion should work. Response.ContentType = "application/octet-stream"; – csharptest.net Sep 3 at 16:49
vote up 0 vote down

Is the result the same if you use Response.Clear() instead of Response.ClearContent() only?

link|flag
vote up 3 vote down

If you haven't done so already, my first step would be to check out the headers using something like Live HTTP Headers firefox plugin, or fiddler to make sure they what you expect.

link|flag
vote up 0 vote down

The typical type for this is audio/mp3. What issue are you seeing?

There's also a link here regarding Quicktime hijacking of MP3 files.

link|flag
vote up 0 vote down

I don't sure but maybe clearing headers and adding mime-type can help

Response.ClearHeaders();
Response.AddHeader("MIME Type",Utilities.GetContentType(audioFileInfo));
link|flag
-1, "MIME Type" is not w3c standard http header. – csharptest.net Sep 3 at 16:37

Your Answer

Get an OpenID
or

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