One test currently fails :
01:00:50,842 INFO [jbossweb] Error compiling file:
/tmp/Jetty_0_0_0_0_8080__jbosstest/classpath_jsp.java [javac]
Compiling 1 source file
/tmp/Jetty_0_0_0_0_8080__jbosstest/classpath_jsp.java:135: cannot
resolve symbol
symbol : class EJBStats
location: package j2ee
Class clazz2 = javax.management.j2ee.EJBStats.class;
I'm running the 'all' config.
The class in question appears in the following places :
[jules@zeuglodon jboss-3.2]$ for i in `find build/output/jboss-3.2.0RC2/
-name "*.jar" -type f`
> do
> $JAVA_HOME/bin/jar tvf $i | grep EJBStats\.class && echo $i
> done
280 Thu Feb 13 00:56:18 GMT 2003
javax/management/j2ee/statistics/EJBStats.class
build/output/jboss-3.2.0RC2/client/jboss-jsr77-client.jar
280 Thu Feb 13 00:56:18 GMT 2003
javax/management/j2ee/statistics/EJBStats.class
build/output/jboss-3.2.0RC2/client/jbossall-client.jar
280 Thu Feb 13 00:56:18 GMT 2003
javax/management/j2ee/statistics/EJBStats.class
build/output/jboss-3.2.0RC2/server/all/lib/jboss-jsr77.jar
280 Thu Feb 13 00:56:18 GMT 2003
javax/management/j2ee/statistics/EJBStats.class
build/output/jboss-3.2.0RC2/server/default/lib/jboss-jsr77.jar
[jules@zeuglodon jboss-3.2]$
But, whilst it is present in
build/output/jboss-3.2.0RC2/server/all/lib/jboss-jsr77.jar which is in
Jasper's classpath, the package name appears to have changed from
avax.management.j2ee.EJBStats to avax/management/j2ee/statistics/EJBStats
If this is the case, shall I fix it?, or is something that requires
deeper thought going on ?
Jules
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development
- Re: [JBoss-dev] 3.2 - WebIntegrationUnitTestCase failure Jules Gosnell