[jboss-cvs] JBossAS SVN: r62013 - trunk/testsuite/src/main/org/jboss/test/jmx/invoker.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Apr 3 00:24:04 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-04-03 00:24:03 -0400 (Tue, 03 Apr 2007)
New Revision: 62013

Modified:
   trunk/testsuite/src/main/org/jboss/test/jmx/invoker/RMIListener.java
Log:
Use UnicastRemoteObject.exportObject(this, 0) so that dynamic stubs may be used

Modified: trunk/testsuite/src/main/org/jboss/test/jmx/invoker/RMIListener.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/jmx/invoker/RMIListener.java	2007-04-03 04:21:05 UTC (rev 62012)
+++ trunk/testsuite/src/main/org/jboss/test/jmx/invoker/RMIListener.java	2007-04-03 04:24:03 UTC (rev 62013)
@@ -45,7 +45,7 @@
    }
    public void export() throws RemoteException
    {
-      UnicastRemoteObject.exportObject(this);
+      UnicastRemoteObject.exportObject(this, 0);
    }
    public void unexport() throws RemoteException
    {




More information about the jboss-cvs-commits mailing list