[Mono-bugs] [Bug 76222][Nor] New - Request.PhysicalApplicationPath string should end with the directory delimiter

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sun Sep 25 10:42:28 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 knocte at gmail.com.

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

--- shadow/76222	2005-09-25 10:42:28.000000000 -0400
+++ shadow/76222.tmp.13194	2005-09-25 10:42:28.000000000 -0400
@@ -0,0 +1,45 @@
+Bug#: 76222
+Product: Mono: Class Libraries
+Version: 1.1
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Sys.Web
+AssignedTo: gonzalo at ximian.com                            
+ReportedBy: knocte at gmail.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Request.PhysicalApplicationPath string should end with the directory delimiter
+
+With this simple testcase file (let's call it testcase.aspx) we can find a
+difference between .NET implementation and Mono implementation:
+
+<%
+  Response.Write("begin<br />");
+  Response.Write(Request.PhysicalApplicationPath);
+  Response.Write("<br />end");
+%>
+
+Actual results:
+[IIS+VS.NET2003 in WindowsXP]
+begin
+c:\inetpub\wwwroot\mysample\
+end
+
+[MONO 1.1.9.1 in SUSE9.3]
+begin
+/srv/www/htdocs/sites/mysample
+end
+
+Expected results:
+begin
+/srv/www/htdocs/sites/mysample/
+end
+
+
+Note: Surprisingly, this bug was not present in Mono 1.1.8.x.


More information about the mono-bugs mailing list