[Mono-bugs] [Bug 49669][Min] New - including <asp:ValidationSummary> control can cause Segementation Fault in mod_mono_server

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 15 Oct 2003 00:23:53 -0400 (EDT)


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 ckf13@student.canterbury.ac.nz.

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

--- shadow/49669	2003-10-15 00:23:53.000000000 -0400
+++ shadow/49669.tmp.15905	2003-10-15 00:23:53.000000000 -0400
@@ -0,0 +1,63 @@
+Bug#: 49669
+Product: Mono/Class Libraries
+Version: unspecified
+OS: Red Hat 8.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: System.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: ckf13@student.canterbury.ac.nz               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: including <asp:ValidationSummary> control can cause Segementation Fault in mod_mono_server
+
+Description of Problem:
+A simple ASP.NET page using the <asp:ValidationSummary> control can crash
+mod_mono_server.exe "hard" with a segmentation fault. Obviously leaving
+Apache uncapable of servicing any more ASP.NET requests.
+
+Steps to reproduce the problem:
+1. Instal mod_mono-0.5 for Apache 2
+2. Start mod_mono via commandline "mono mod-mono-server.exe
+--root=/var/www/html/mono --applications /mono:."
+2. Placed contents of xsp-0.6/test directory into /var/www/html/mono to
+test installation (worked successfully)
+3. Write the contents below into a file called test.aspx within
+/var/www/html/mono
+4. Accessing http://localhost/mono/test.aspx will cause mod_mono_server to
+crash with a segmentation fault
+
+Actual Results:
+mod_mono_server aborts with a segmentation fault and the web browser gets a
+Server 500 error.
+
+Expected Results:
+A page should be displayed to the user containing the message "Hello World"
+
+How often does this happen? 
+Every time.
+
+
+Version Information:
+
+Installation is a fresh RPM installed of mono 0.28
+mono-0.28-1.ximian.5.1
+mono-devel-0.28-1.ximian.5.1
+mod_mono-0.5
+xsp-0.6
+httpd-2.0.40-11.7
+
+Contents of test.aspx (3 lines)
+
+<form runat="server">
+    <h1>Hello World</h1>
+    <asp:ValidationSummary runat="server" />
+</form>
+
+This was boiled down from a more functional page, I'm attempting to port an
+existing ASP.NET based application to Mono.