I am trying to return a file from an ASP API method.
The strange thing is, it works in IE (It has been a long time since I have said that).
In other browsers (Chrome and Firefox) it repeats the call continuously (a breakpoint in the method gets hit multiple times)
Has anybody ever has anything like this, or does anyone know what might be causing this.
The code:
public async Task<HttpResponseMessage> GetExcel()
{
var stream = await MakeReport();
var result = Request.CreateResponse(HttpStatusCode.OK);
result.Content = new StreamContent(stream);
result.Content.Headers.ContentType = new MediaTypeHeaderValue("application/vnd.ms-excel");
result.Content.Headers.ContentLength = stream.Length;
result.Content.Headers.Expires = new DateTimeOffset(DateTime.Now.AddDays(-1));
result.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("Attachment") { FileName = "Report.xlsx" };
return result;
}
I have also tried loading the stream into a byte array, and using a ByteArrayContent
. I have checked the position of stream while in breat mode. Since id does work in IE I don't think there is anything wrong with the stream.
Incase one of these is doing something funny and instructing the browser to try again, this is a list of headers returned:
Access-Control-Allow-Credentials → true
Access-Control-Allow-Headers → X-Requested-With, origin, content-type, accept
Access-Control-Allow-Methods → GET, PUT, POST, DELETE, HEAD, OPTIONS
Access-Control-Allow-Origin → *
Cache-Control → no-cache
Content-Disposition → Attachment; filename=Report.xlsx
Content-Length → 16702
Content-Type → application/vnd.ms-excel
Date → Wed, 07 Feb 2018 06:08:17 GMT
Expires → -1
Pragma → no-cache
Request-Context → appId=cid-v1:8fcfeca5-8450-44d8-a0de-35724f4e81f3
Server → Microsoft-IIS/10.0
X-AspNet-Version → 4.0.30319
X-Powered-By → ASP.NET
X-SourceFiles → =?UTF-8?B?QzpcVXNlcnNcbWVcU291cmNlXFJlcG9zXE11c2tldGVlclxJR1NcYXBpXEV4Y2VsKDEwMjgyLDAsMCwwKQ==?=
X-StackifyID → V1|80000015-0002-f500-b63f-84710c7967bb|
Any ideas would be appreciated.