I didn't commit the Policy.setPolicy() stuff if that's what you mean. Apart from that main work is being done in org.jboss.ejb3.security.JaccHelper and org.jboss.ejb3.security.JaccAuthorizationInterceptor(Factory)
If you want to run the test (currently only deploys in Branch_4_0 due to some problems with persistence.xml in my copy of head at least): $cd ejb3 $build.sh -f build-test.xml $build.sh -f build-test.xml jacc-test > -----Original Message----- > From: Scott M Stark [mailto:[EMAIL PROTECTED] > Sent: 24 March 2006 17:20 > To: Kabir Khan; Bill Burke > Cc: QA; jboss-development@lists.sourceforge.net > Subject: RE: JACC (ejb 3) - WAS RE: jboss-4.0-testsuite Build > Completed With Testsuite Errors > > Where is the ejb3 code that sets up the jvm Policy instance > as I would like to review how its being done. > > > -----Original Message----- > > From: Kabir Khan > > Sent: Friday, March 24, 2006 5:02 AM > > To: Bill Burke; Scott M Stark > > Cc: QA; jboss-development@lists.sourceforge.net; Kabir Khan > > Subject: JACC (ejb 3) - WAS RE: jboss-4.0-testsuite Build Completed > > With Testsuite Errors > > > > I've taken a look at the EJB 3 JACC tests and the problem for ejb 3 > > seems to > > be: > > > > The JBossPolicyConfigurationFactory constructor calls > > Policy.getPolicy() and throws away the Policy instance if > it is not an > > instance of DelegatingPolicy. For EJB 3 the returned > > Policy.getPolicy() is an instance of > DelegatingPolicy$PolicyProxy, and > > so it gets thrown away and replaced with something else > > > > // Get the DelegatingPolicy > > Policy p = Policy.getPolicy(); > > if( (p instanceof DelegatingPolicy) == false) > > { > > // Assume that the installed policy delegates to the > > DelegatingPolicy > > p = DelegatingPolicy.getInstance(); > > } > > policy = (DelegatingPolicy) p; > > This new DelegatingPolicy is the one the EJB 3 containers > work on via > > the PolicyConfiguration during setup. > > > > > > Later on the interceptors call Policy.getPolicy() and get the same > > empty DelegatingPolicy$ProxyPolicy instance that was thrown away > > during setup/ > > > > Changing the JBossPolicyConfigurationFactory constructor to > > Policy p = Policy.getPolicy(); > > if( (p instanceof DelegatingPolicy) == false) > > { > > // Assume that the installed policy delegates to the > > DelegatingPolicy > > p = DelegatingPolicy.getInstance(); > > Policy.setPolicy(p); > > } > > > > fixes this for EJB, but I am hesitant to make this change since I > > don't know what the wider implications of this are > > > > > -----Original Message----- > > > From: Bill Burke [mailto:[EMAIL PROTECTED] > > > Sent: 24 March 2006 00:15 > > > To: Ryan Campbell > > > Cc: [EMAIL PROTECTED]; jboss-development@lists.sourceforge.net; > > Kabir Khan > > > Subject: Re: jboss-4.0-testsuite Build Completed With > > Testsuite Errors > > > > > > Hmmm, probably related to the EJB3 jacc failures? > > > > > > Ryan Campbell wrote: > > > > All these JACC tests are failing, and the jacc-security-mgr > > > logs show this: > > > > > > > > > > > > > > > > java.lang.NoSuchMethodException: > > > > > > > > > > org.jboss.security.jacc.SecurityService.setObjectName(javax.management > > > > .ObjectName) > > > > > > > > at java.lang.Class.getMethod(Class.java:986) > > > > > > > > at > > > > > > > > > > org.jboss.mx.server.AbstractMBeanInvoker.inject(AbstractMBeanInvoker.j > > > > ava:944) > > > > > > > > at > > > > > > > > > > org.jboss.mx.server.AbstractMBeanInvoker.preRegister(AbstractMBeanInvo > > > > ker.java:658) > > > > > > > > at > > > > > > > > > > org.jboss.mx.server.registry.BasicMBeanRegistry.invokePreRegister(Basi > > > > cMBeanRegistry.java:697) > > > > > > > > at > > > > > > > > > > org.jboss.mx.server.registry.BasicMBeanRegistry.registerMBean(BasicMBe > > > > anRegistry.java:211) > > > > > > > > at > > > sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source) > > > > > > > > at > > > > > > > > > > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess > > > > orImpl.java:25) > > > > > > > > at java.lang.reflect.Method.invoke(Method.java:324) > > > > > > > > at > > > > > > > > > > org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatche > > > > r.java:155) > > > > > > > > at > > > org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) > > > > > > > > at > > > > > > > > > > org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercepto > > > > r.java:133) > > > > > > > > at > > org.jboss.mx.server.Invocation.invoke(Invocation.java:88) > > > > > > > > at > > > > > > > > > > org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMB > > > > eanOperationInterceptor.java:142) > > > > > > > > at > > org.jboss.mx.server.Invocation.invoke(Invocation.java:88) > > > > > > > > at > > > > > > > > > > org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.j > > > > ava:260) > > > > > > > > at > > > > > > org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659) > > > > > > > > at > > > > > > org.jboss.mx.server.MBeanServerImpl$3.run(MBeanServerImpl.java:1422) > > > > > > > > at > > > java.security.AccessController.doPrivileged(Native Method) > > > > > > > > at > > > > > > > > > > org.jboss.mx.server.MBeanServerImpl.registerMBean(MBeanServerImpl.java > > > > :1417) > > > > > > > > at > > > > > > > > > > org.jboss.mx.server.MBeanServerImpl.registerMBean(MBeanServerImpl.java > > > > :1350) > > > > > > > > at > > > > > > > > > > org.jboss.mx.server.MBeanServerImpl.createMBean(MBeanServerImpl.java:3 > > > > 45) > > > > > > > > at > > > > org.jboss.system.ServiceCreator.install(ServiceCreator.java:181) > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ---------------------------------------------------------------------- > > > > -- > > > > > > > > *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > > > *Sent:* Thursday, March 23, 2006 3:12 PM > > > > *To:* Adrian Brock; Anil Saldhana; Bill Burke; Brian > Stansberry; > > > > jboss-development@lists.sourceforge.net; > > [EMAIL PROTECTED]; QA; > > > > Ryan Campbell; Ruel Loehr; Scott M Stark; Thomas Diesler > > > > *Subject:* jboss-4.0-testsuite Build Completed With > > Testsuite Errors > > > > *Importance:* High > > > > > > > > > > > > > > > > View results here -> > > > > > > > > > > http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-testsuite?log > > > > =log20060323142936 > > > > > > > > *TESTS FAILED* > > > > > > > > *Ant Error > > > > Message: > > > */services/cruisecontrol/work/scripts/build-jboss-common.xml:235: > > > > The following error occurred while executing this line: > > > > > /services/cruisecontrol/work/scripts/build-common-targets.xml:26: > > > > Build Successful - Tests completed with errors or failures. > > > > > > > > *Date of build: *03/23/2006 14:29:36 > > > > > > > > *Time to build: *98 minutes 20 seconds > > > > > > > > *Last changed: *03/23/2006 14:22:36 > > > > > > > > *Last log entry: *fix uneeded dependency > > > > > > > > > > > > > > > > Unit Tests: (2879) Total Errors and Failures: (234) > > > > > > > > testServerFound > > > > > > > > > > > > > > > > org.jboss.test.cluster.test.UndeployTestCase(Default-UDP) > > > > > > > > testRelations > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.cmrstress.CMRStressTestCase(JACC+SecurityMgr) > > > > > > > > testRelations > > > > > > > > > > > > > > > > org.jboss.test.cmp2.cmrstress.CMRStressTestCase(JACC) > > > > > > > > testCMRTransaction > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.cmrtransaction.test.CMRTransactionUnitTestCase(JAC > > > > C+SecurityMgr) > > > > > > > > testCMRTransaction > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.cmrtransaction.test.CMRTransactionUnitTestCase(JAC > > > > C) > > > > > > > > testLazyResultSetLoading > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCascadeDelete > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCategory_Type > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCategory_Type_BatchCascadeDelete > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testTxTester_none > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testJBossQL > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testEJBQL > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCompiler > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testLimitOffset > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testFinderWithLimitOffset > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_setInPostCreate > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_dvo > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_getOrdersShippedToCA > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_getStatesShipedTo > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_getAddressesInCA > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_findDoubleJoin > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCMRReset > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCMRSetFromNewCollection > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testIsIdentical > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testOverloadedEjbSelects > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testDeclaredSql > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_a1setB_a2getB > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_a1SetB_a2GetB > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_b2mSetA_b1nGetA > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_a1GetB_addB2m > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_a1GetB_removeB1n > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_b1jSetA_b2kGetA > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_a1SetB_a3GetB > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_a1GetB_addB3 > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > test_a2GetB_removeB2 > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testLazyResultSetLoading > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testCascadeDelete > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testCategory_Type > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testCategory_Type_BatchCascadeDelete > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testTxTester_none > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testJBossQL > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testEJBQL > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testCompiler > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testLimitOffset > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testFinderWithLimitOffset > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_setInPostCreate > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_dvo > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_getOrdersShippedToCA > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_getStatesShipedTo > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_getAddressesInCA > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_findDoubleJoin > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testCMRReset > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testCMRSetFromNewCollection > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testIsIdentical > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testOverloadedEjbSelects > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testDeclaredSql > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_a1setB_a2getB > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_a1SetB_a2GetB > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_b2mSetA_b1nGetA > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_a1GetB_addB2m > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_a1GetB_removeB1n > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_b1jSetA_b2kGetA > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_a1SetB_a3GetB > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_a1GetB_addB3 > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > test_a2GetB_removeB2 > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testCheckBookBalance > > > > > > > > > > > > > > > > org.jboss.test.cmp2.perf.test.PerfUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCheckBookBalance > > > > > > > > > > > > > > > > org.jboss.test.cmp2.perf.test.PerfUnitTestCase(JACC) > > > > > > > > test_a1SetB_a2GetB_Table > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a2GetB_FK > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a2GetB_Table > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a2GetB_FK > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a2GetB_Table > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a2GetB_FK > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_b2mSetA_b1nGetA_Table > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_b2mSetA_b1nGetA_FK > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1GetB_addB2m_Table > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1GetB_addB2m_FK > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1GetB_removeB1n_Table > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1GetB_removeB1n_FK > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a2GetB_FK > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_b1jSetA_b2kGetA_Table > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_b1jSetA_b2kGetA_FK > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a3GetB > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1GetB_addB3 > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a2GetB_removeB2 > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a3GetB > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1GetB_addB3 > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a2GetB_removeB2 > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC+Securit > > > > yMgr) > > > > > > > > test_a1SetB_a2GetB_Table > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1SetB_a2GetB_FK > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1SetB_a2GetB_Table > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1SetB_a2GetB_FK > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1SetB_a2GetB_Table > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1SetB_a2GetB_FK > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_b2mSetA_b1nGetA_Table > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_b2mSetA_b1nGetA_FK > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1GetB_addB2m_Table > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1GetB_addB2m_FK > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1GetB_removeB1n_Table > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1GetB_removeB1n_FK > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1SetB_a2GetB_FK > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_b1jSetA_b2kGetA_Table > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_b1jSetA_b2kGetA_FK > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1SetB_a3GetB > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1GetB_addB3 > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a2GetB_removeB2 > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1SetB_a3GetB > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a1GetB_addB3 > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > test_a2GetB_removeB2 > > > > > > > > > > > > > > > > org.jboss.test.cmp2.relationship.RelationshipUnitTestCase(JACC) > > > > > > > > testBooleanPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testBooleanObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testBytePrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testByteObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testShortPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testShortObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testIntegerPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testIntegerObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testLongPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testLongObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testFloatPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testFloatObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testDoublePrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testDoubleObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testStringValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testUtilDateValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testSqlDateValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testTimeValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testTimestampValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testBigDecimalValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testByteArrayValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testValueClass > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testObjectValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testLiteralToLiteral > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testUtilDateBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testSQLDateBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testTimeBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testTimestampBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testTimestampComparison > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testTimestampIn > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testStringBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testStringComparison > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testStringIn > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testLike > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testNumericIn > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testNumbericComparison > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testConcatFunction > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testLengthFunction > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testSelectValueClass > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testLocateFunction > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testFindWithByteArray > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testDuplicateKey > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testHashtable > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testOptionAUpdate > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC+SecurityMgr) > > > > > > > > testBooleanPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testBooleanObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testBytePrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testByteObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testShortPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testShortObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testIntegerPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testIntegerObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testLongPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testLongObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testFloatPrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testFloatObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testDoublePrimitive > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testDoubleObject > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testStringValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testUtilDateValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testSqlDateValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testTimeValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testTimestampValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testBigDecimalValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testByteArrayValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testValueClass > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testObjectValue > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testLiteralToLiteral > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testUtilDateBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testSQLDateBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testTimeBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testTimestampBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testTimestampComparison > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testTimestampIn > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testStringBetween > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testStringComparison > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testStringIn > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testLike > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testNumericIn > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testNumbericComparison > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testConcatFunction > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testLengthFunction > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testSelectValueClass > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testLocateFunction > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testFindWithByteArray > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testDuplicateKey > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testHashtable > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > testOptionAUpdate > > > > > > > > > > > > > > > > org.jboss.test.cmp2.simple.SimpleUnitTestCase(JACC) > > > > > > > > unknown > > > > > > > > > > > > > > > > org.jboss.test.jacc.test.EJBSpecUnitTestCase(JACC+SecurityMgr) > > > > > > > > unknown > > > > > > > > > > > > > > > > org.jboss.test.jacc.test.EJBSpecUnitTestCase(JACC) > > > > > > > > testMissingIsUnchecked > > > > > > > > > > > > > > > > > > org.jboss.test.jacc.test.MissingMethodUnitTestCase(JACC+SecurityMgr) > > > > > > > > testMissingIsExcluded > > > > > > > > > > > > > > > > > > org.jboss.test.jacc.test.MissingMethodUnitTestCase(JACC+SecurityMgr) > > > > > > > > testMissingIsUnchecked > > > > > > > > > > > > > > > > org.jboss.test.jacc.test.MissingMethodUnitTestCase(JACC) > > > > > > > > testMissingIsExcluded > > > > > > > > > > > > > > > > org.jboss.test.jacc.test.MissingMethodUnitTestCase(JACC) > > > > > > > > unknown > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.jacc.test.WebIntegrationUnitTestCase(JACC+SecurityMgr) > > > > > > > > unknown > > > > > > > > > > > > > > > > org.jboss.test.jacc.test.WebIntegrationUnitTestCase(JACC) > > > > > > > > testClientCertSSLAccess > > > > > > > > > > > > > > > > org.jboss.test.pooled.test.SSLSocketsUnitTestCase > > > > > > > > testWithTransportOptions > > > > > > > > > > > > > > > > org.jboss.test.webservice.secure.SimpleClientSecureTestCase > > > > > > > > testWithTransportOptions > > > > > > > > > > > > > > > > org.jboss.test.webservice.secure.noenv.TransportOptionsTestCase > > > > > > > > testWithoutKeystore > > > > > > > > > > > > > > > > org.jboss.test.webservice.secure.noenv.TransportOptionsTestCase > > > > > > > > testActivationInactivation > > > > > > > > > > > > > > > > org.jboss.test.cluster.test.StateTransferTestCase(Default-UDP) > > > > > > > > testNonPrimitiveGet > > > > > > > > > > > > > > > > org.jboss.test.cluster.test.UndeployTestCase(Default-UDP) > > > > > > > > testCreateAudit > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC+SecurityMgr) > > > > > > > > testUpdateAudit > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC+SecurityMgr) > > > > > > > > testUpdateAuditWithClear > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC+SecurityMgr) > > > > > > > > testUpdateAuditChangedNames > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC+SecurityMgr) > > > > > > > > testUpdateAuditMapped > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCreateAuditMappedChangedFields > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC+SecurityMgr) > > > > > > > > testUpdateAuditMappedChangedFields > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC+SecurityMgr) > > > > > > > > testCreateAudit > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC) > > > > > > > > testUpdateAudit > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC) > > > > > > > > testUpdateAuditWithClear > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC) > > > > > > > > testUpdateAuditChangedNames > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC) > > > > > > > > testUpdateAuditMapped > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC) > > > > > > > > testCreateAuditMappedChangedFields > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC) > > > > > > > > testUpdateAuditMappedChangedFields > > > > > > > > > > > > > > > > org.jboss.test.cmp2.audit.test.AuditUnitTestCase(JACC) > > > > > > > > testUserQueries > > > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC+SecurityMgr) > > > > > > > > testUserQueries > > > > > > > > > > > > > > > > org.jboss.test.cmp2.commerce.CompleteUnitTestCase(JACC) > > > > > > > > testDeleteAssociations > > > > > > > > > > > > > > > > org.jboss.test.jaxr.scout.publish.JaxrDeleteAssociationTestCase > > > > > > > > testDeleteOrgs > > > > > > > > > > > > > > > > org.jboss.test.jaxr.scout.publish.JaxrDeleteOrganizationTestCase > > > > > > > > testSaveOrg > > > > > > > > > > > > > > > > org.jboss.test.jaxr.scout.publish.JaxrSaveOrganizationTestCase > > > > > > > > testSaveServiceBinding > > > > > > > > > > > > > > > > org.jboss.test.jaxr.scout.publish.JaxrSaveServiceBindingTestCase > > > > > > > > testConfirmAssociation > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.jaxr.scout.publish.infomodel.JaxrConfimAssociationTestC > > > > ase > > > > > > > > testBusinessQuery > > > > > > > > > > > > > > > > org.jboss.test.jaxr.scout.query.JaxrBusinessQueryTestCase > > > > > > > > testFindAssociations > > > > > > > > > > > > > > > > > > > > > > org.jboss.test.jaxr.scout.query.infomodel.JaxrFindAssociationsTestCase > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > Bill Burke > > > Chief Architect > > > JBoss Inc. > > > > > > > > ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ JBoss-Development mailing list JBoss-Development@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jboss-development