开发者

IE 6 and chunked encoding problem

开发者 https://www.devze.com 2023-01-06 11:31 出处:网络
I\'m experiencing the issue documented here: http://support.microsoft.com/kb/914453 You access Web applications or Web

I'm experiencing the issue documented here:

http://support.microsoft.com/kb/914453

You access Web applications or Web sites from a Web server that uses chunked transfer encoding on a Microsoft Windows Server 2003-based or on a Microsoft Windows XP-based computer. Then, the browser or the Web applications stop responding.

This problem occurs when the Wininet.dll file receives an incomplete chunk of data during the initial Winsock data receive operation. When this behavior occurs, the second Winsock data receive operation reads only a chunk token. For example, the second Winsock data receive operation may only read carriage-return line-feed (CRLF) from the socket. Then, the Wininet.dll file makes continuous calls to the Winsock Select function for 30 seconds. The file is waiting to receive more data. However, if no data arrives, the browser or the Web application stops responding.

The issue is occurring with an HttpHandler I have impl开发者_运维知识库emented to retrieve files from the database. The relevant code is:

var buffer = GetSomeByteArray();
context.Response.Clear();
context.Response.ContentType = type;
context.Response.BinaryWrite(buffer);                        
context.Response.End();

I can disable chunked encoding at the IIS 6 level by turning off dynamic compression or simply not specifying .axd as a compressible file type, but I'd prefer not to do that. My question is, is there a bug in my code or something I'm not doing that I should be that would prevent the browser from receiving an incomplete chunk?


Your code is good. How big are these files? What about using content-disposition: attachment? Also, what Content-Type?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号