[Mono-bugs] [Bug 68854][Cri] New - mod_mono returns 503 error on web service request when using apache2 worker mpm

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 27 Oct 2004 12:50:14 -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 mlasky@novell.com.

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

--- shadow/68854	2004-10-27 12:50:14.000000000 -0400
+++ shadow/68854.tmp.24930	2004-10-27 12:50:14.000000000 -0400
@@ -0,0 +1,53 @@
+Bug#: 68854
+Product: Mono: Class Libraries
+Version: unspecified
+OS: SLES 9
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Critical
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: mlasky@novell.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mod_mono returns 503 error on web service request when using apache2 worker mpm
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+On SLES9 using the Apache2 Worker MPM. Web service requests receive a 503
+'Service unavailable' error. 
+
+Steps to reproduce the problem:
+1. Have apache2 configured to use the worker mpm.
+2. Have mod_mono and mod-mono-server installed.
+3. Set up virtual root as follows in mod_mono.conf:
+
+LoadModule mono_module /usr/lib/apache2/libmod_mono.so
+Alias /test "/usr/share/doc/xsp/test"
+MonoApplications "/test:/usr/share/doc/xsp/test"
+<Location /test >
+	Order allow,deny
+	Allow from all
+	SetHandler mono
+</Location>
+
+4. Using web browser, go to URL: http://localhost/test
+
+
+Actual Results:
+Browser page returns Error 503 'Service unavailable'
+
+Expected Results:
+The XSP test suite page.
+
+How often does this happen? 
+Every time.
+
+Additional Information:
+This works wonderfully on apache2's prefork mpm. All I do to make it fail
+is to configure apache2 to use the worker mpm.