[Mono-dev] BIG ASP.NET BUG : SegFault when sending a Response of a size > 120Ko

Hubert FONGARNAND informatique.internet at fiducial.fr
Mon Oct 17 04:56:48 EDT 2005


Hello

I'm working with mono from svn : (today's revision)

I want to send a byte[] of a size > 120kb to the client:
this code cause a segfault to xsp :

		private void MyButton_Click(object sender,EventArgs e)
		{
			int length=120000;
			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();
		}
.
hubert at hub-lin-dev /home/monoapp/WebApplication1 $ xsp
xsp
Listening on port: 8080 (non-secure)
Listening on address: 0.0.0.0
Root directory: /home/monoapp/WebApplication1
Hit Return to stop the server.
Erreur de segmentation

I'm opening a bug in bugzilla with the complete test case... I believe
this bug is linked with the new unmanaged IO Asp.NET stack...

I think it's a Major regression (because it use to work)
_______________________________________________
Ce message et les éventuels documents joints peuvent contenir des informations confidentielles.
Au cas où il ne vous serait pas destiné, nous vous remercions de bien vouloir le supprimer et en aviser immédiatement l'expéditeur. Toute utilisation de ce message non conforme à sa destination, toute diffusion ou publication, totale ou partielle et quel qu'en soit le moyen est formellement interdite.
Les communications sur internet n'étant pas sécurisées, l'intégrité de ce message n'est pas assurée et la société émettrice ne peut être tenue pour responsable de son contenu.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/mono-devel-list/attachments/20051017/392d8ca2/attachment.html 


More information about the Mono-devel-list mailing list