From: Adrian B. <ej...@us...> - 2004-09-10 00:57:06
|
User: ejort Date: 04/09/09 17:56:49 Modified: . build.xml Log: Add logging of all RMI classloading activity to the dynamic loading test. This shows the codebase is null when it tries to load org.jboss.test.jrmp.ejb.AString. It should be pointing at the webserver on 8083?!? Revision Changes Path 1.404 +3 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.403 retrieving revision 1.404 diff -u -r1.403 -r1.404 --- build.xml 9 Sep 2004 20:07:54 -0000 1.403 +++ build.xml 10 Sep 2004 00:56:48 -0000 1.404 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.403 2004/09/09 20:07:54 kabkhan Exp $ --> +<!-- $Id: build.xml,v 1.404 2004/09/10 00:56:48 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4327,6 +4327,7 @@ <include name="org/jboss/test/jrmp/test/DynLoading*.class"/> <include name="org/jboss/test/JBossTestCase.class"/> <include name="org/jboss/test/JBossTestServices.class"/> + <include name="org/jboss/test/util/LoggingRMIClassLoader.class"/> </fileset> </jar> @@ -6211,6 +6212,7 @@ value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" value="${build.resources}/security/auth.conf"/> + <sysproperty key="java.rmi.server.RMIClassLoaderSpi" value="org.jboss.test.util.LoggingRMIClassLoader"/> <classpath> <pathelement path="${build.lib}/jrmp-dl-client.jar"/> |