[Mono-bugs] [Bug 67396][Wis] New - Wrong error message when accessing Trace.axd from remote machine

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 3 Oct 2004 05:46:42 -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 gert.driesen@pandora.be.

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

--- shadow/67396	2004-10-03 05:46:42.000000000 -0400
+++ shadow/67396.tmp.17979	2004-10-03 05:46:42.000000000 -0400
@@ -0,0 +1,47 @@
+Bug#: 67396
+Product: Mono: Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: gert.driesen@pandora.be               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Wrong error message when accessing Trace.axd from remote machine
+
+When accessing Trace.axd remotely, and the "localOnly" attribute on the 
+<trace> element is set to "true", the following error message is shown :
+
+Trace Error 
+
+Description : Trace.axd is not enabled in the configuration file for this 
+application. 
+
+Using MS ASP.NET, you get the following error message in that case :
+
+Trace Error
+
+Description: The current trace settings prevent trace.axd from being 
+viewed remotely (for security reasons). It could, however, be viewed by 
+browsers running on the local server machine.
+
+Details: To enable trace.axd to be viewable on remote machines, please 
+create a <trace> tag within the configuration file located in the root 
+directory of the current web application. This <trace> tag should then 
+have its "localOnly" attribute set to "false".
+
+<configuration>
+  <system.web>
+    <trace localOnly="false"/>
+  </system.web>
+</configuration>
+
+The Mono message is not correct, as tracing is enabled, but just not 
+accessible from remote machines.