[Mono-bugs] [Bug 71587][Maj] Changed - Cannot access HttpWorkerRequest from HttpModule

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 23 Jan 2005 14:01:56 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by chrish@assistedsolutions.com.

http://bugzilla.ximian.com/show_bug.cgi?id=71587

--- shadow/71587	2005-01-23 12:26:05.000000000 -0500
+++ shadow/71587.tmp.2013	2005-01-23 14:01:56.000000000 -0500
@@ -261,6 +261,15 @@
 
 In 2.0 there's a documented HttpRuntimeSection class holding all the
 properties and we will have to implement it.
 
 ------- Additional Comments From chrish@assistedsolutions.com  2005-01-23 12:26 -------
 That's good enough for me. Thanks for being so responsive!
+
+------- Additional Comments From chrish@assistedsolutions.com  2005-01-23 14:01 -------
+About the whole request being read into memory... MS does do a check 
+first to see if it exceeds the maxRequestLength, but if not, they do 
+load it into memory. If you want to accept large uploads (10-100MB) 
+and thus set maxRequestLength big enough to accept them, that results 
+in a lot of memory usage on the server. That's why I wrote 
+SlickUpload -- to avoid that issue, as well as to provide progress 
+updates to the browser during long-running uploads.