[Mono-bugs] [Bug 63217][Wis] Changed - Wrong exception message in XSP output
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 17 Aug 2004 10:20:09 -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 jwezel@compumaster.de.
http://bugzilla.ximian.com/show_bug.cgi?id=63217
--- shadow/63217 2004-08-17 09:36:46.000000000 -0400
+++ shadow/63217.tmp.3226 2004-08-17 10:20:09.000000000 -0400
@@ -1,14 +1,14 @@
Bug#: 63217
Product: Mono: Class Libraries
Version: unspecified
-OS:
+OS: unknown
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Wishlist
Component: Sys.Web
AssignedTo: mono-bugs@ximian.com
ReportedBy: jwezel@compumaster.de
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -45,6 +45,60 @@
Additional Information:
------- Additional Comments From jwezel@compumaster.de 2004-08-17 09:36 -------
Created an attachment (id=9135)
ChilkatDotNet component which relies on Microsoft.VisualC
+
+------- Additional Comments From jwezel@compumaster.de 2004-08-17 10:20 -------
+The current behaviour might be subject of following situation:
+When using Chilkat component, we get no compile errors but 2 runtime
+exceptions when we start our application.
+
+Possibly, XSP only takes the LAST exception for display at the error
+page output and only the FIRST exception for logging to console
+window.
+
+Here my test scenario:
+
+[root@lwezel wwwroot]# cat test2.cs
+public class Test
+{
+string ebbes="";
+void UT()
+{
+//System.Object MyMail = new Chilkat.Email();
+Chilkat.Email MyEMail; //= new Chilkat.Email();
+}
+
+public static void Main ()
+{
+System.Console.WriteLine ("Jepp");
+}
+
+}
+[root@lwezel wwwroot]# mcs test2.cs /r:ChilkatDotNet.dll
+Compilation succeeded
+[root@lwezel wwwroot]# mono test2.exe
+
+** (test2.exe:30647): WARNING **: Could not find assembly
+Microsoft.VisualC, references from /mono-
+dev/wwwroot/ChilkatDotNet.dll (assemblyref_index=1)
+ Major/Minor: 7,0
+ Build: 3300,0
+ Token: b03f5f7f11d50a3a
+
+
+** (test2.exe:30647): WARNING **: Could not find assembly
+ChilkatDotNet, references from /mono-dev/wwwroot/test2.exe
+(assemblyref_index=1)
+ Major/Minor: 4,9
+ Build: 0,0
+ Token: 16dba5cb7b161beb
+
+cannot open assembly test2.exe
+[root@lwezel wwwroot]#
+
+Personlly, I'd like to get both messages at the same time on the
+error page as well as on console log windows in this situation. Or at
+lesast the first of both messages.
+