[Mono-bugs] [Bug 76460][Maj] Changed - ASP.NET crash with > ~ 120 Ko Reponse

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Wed Oct 19 03:26:27 EDT 2005


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 informatique.internet at fiducial.fr.

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

--- shadow/76460	2005-10-18 19:51:02.000000000 -0400
+++ shadow/76460.tmp.24682	2005-10-19 03:26:27.000000000 -0400
@@ -101,6 +101,74 @@
 ------- Additional Comments From gonzalo at ximian.com  2005-10-18 19:51 -------
 I uploaded a new System.Web.dll to
 http://primates.ximian.com/~gonzalo/System.Web.dll.gz.
 
 Could you try that out?
 Thanks.
+
+------- Additional Comments From informatique.internet at fiducial.fr  2005-10-19 03:26 -------
+If I execute this code :
+			int length=1200000;
+			byte[] buffer=new byte[length];
+			Response.ClearHeaders();
+			Response.Clear();
+			Response.AddHeader("Content-Disposition","attachment;
+filename=\""+"essai"+"\"");
+			Response.AppendHeader("Content-Length",length.ToString());
+			Response.StatusCode = 200;
+			Response.OutputStream.Write(buffer,0,length);
+			Response.End();
+			Response.Flush();
+
+With the today svn version i get hubert at hub-lin-dev
+/home/monoapp/WebApplication1 $ xsp --verbose
+xsp
+Adding applications '/:.'...
+Registering application:
+    Host:          any
+    Port:          any
+    Virtual path:  /
+    Physical path: /home/monoapp/WebApplication1
+Listening on port: 8080 (non-secure)
+Listening on address: 0.0.0.0
+Root directory: /home/monoapp/WebApplication1
+Hit Return to stop the server.
+
+** ERROR **: file mini-trampolines.c: line 28 (mono_magic_trampoline):
+assertion failed: (addr)
+aborting...
+Abandon
+
+With your System.web.dll i get
+Server error in '/' application
+Description: Error processing request.
+
+Error Message: HTTP 500.
+
+Stack Trace:
+
+System.NullReferenceException: Object reference not set to an instance
+of an object
+in <0x0009b> System.Web.UI.Page:OnFormRender
+(System.Web.UI.HtmlTextWriter writer, System.String formUniqueID)
+in <0x00049> System.Web.UI.HtmlControls.HtmlForm:RenderChildren
+(System.Web.UI.HtmlTextWriter w)
+in <0x00023> System.Web.UI.HtmlControls.HtmlContainerControl:Render
+(System.Web.UI.HtmlTextWriter writer)
+in <0x0000d> System.Web.UI.HtmlControls.HtmlForm:Render
+(System.Web.UI.HtmlTextWriter w)
+in <0x00099> System.Web.UI.Control:RenderControl
+(System.Web.UI.HtmlTextWriter writer)
+in <0x00092> System.Web.UI.Control:RenderChildren
+(System.Web.UI.HtmlTextWriter writer)
+in <0x00011> System.Web.UI.Control:Render
+(System.Web.UI.HtmlTextWriter writer)
+in <0x00099> System.Web.UI.Control:RenderControl
+(System.Web.UI.HtmlTextWriter writer)
+in <0x002f1> System.Web.UI.Page:InternalProcessRequest ()
+in <0x0009d> System.Web.UI.Page:ProcessRequest (System.Web.HttpContext
+context)
+in <0x01060> System.Web.HttpApplication+<Pipeline>__1:MoveNext ()
+
+On page load...
+
+


More information about the mono-bugs mailing list