[Mono-bugs] [Bug 42542][Nor] New - mini don't work with a kind of remoting

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Wed, 7 May 2003 17:39:58 -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 yoros@wanadoo.es.

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

--- shadow/42542	Wed May  7 17:39:58 2003
+++ shadow/42542.tmp.22644	Wed May  7 17:39:58 2003
@@ -0,0 +1,45 @@
+Bug#: 42542
+Product: Mono/Runtime
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: yoros@wanadoo.es               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mini don't work with a kind of remoting
+
+Description of Problem:
+    Mini fails when remoting is done through interfaces (the whole object
+is only known by the server, the client only knows one interface that the
+remote object implements).
+
+Steps to reproduce the problem:
+1. Compile the file attached (TestCase.cs)
+        mcs TestCase.cs -r System.Runtime.Remoting
+2. Run the executable with mini (new mono jit)
+        mono TestCase.exe
+3. Run the executable with mono (old mono jit)
+        oldmono TestCase.exe
+
+Actual Results:
+    With mono (new jit), I get a NullReferenceException while in oldmono it
+works right.
+
+Expected Results:
+    It should work in the new jit.
+
+How often does this happen? 
+    Always.
+
+Additional Information:
+    I don't know what could be happening, I readed the methods referenced
+in the trace call and I never arrive to MINI specific code, I arrive only
+to metadata files (that is shared between old and new jits).