[Design of POJO Server] - Re: Embedded - EJB deployment problems
by scott.stark@jboss.org
"pete.muir(a)jboss.org" wrote :
| My apologies, I was getting confused between the test structure and the deployed structure. The correct layout is:
|
| jboss-seam.jar has no META-INF/ejb-jar.xml or jboss.xml but does have EJBs in it (in an app deployed to AS we make it an ejb module in application.xml). It is placed on the classpath which is used to boot embedded jboss however its EJBs aren't being picked up. This works in AS 4.2.
The AnnotationMetaDataDeployer is not scanning a deployment unless it has a descriptor generated metadata attachment by default. For a pure annotation based deployment you need to set the metaDataCompleteIsDefault property to false in the metadata-beans.xml descriptor:
| <bean name="AnnotationMetaDataDeployer"
| class="org.jboss.deployment.AnnotationMetaDataDeployer">
| <property name="metaDataCompleteIsDefault">false</property>
| </bean>
|
The deployer will then scan any deployments that have no descriptors.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111056#4111056
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4111056
18 years, 4 months
[Design of POJO Server] - Re: Embedded - EJB deployment problems
by pete.muir@jboss.org
"scott.stark(a)jboss.org" wrote : "pete.muir(a)jboss.org" wrote :
| | 2) Having done this, I find that no EJBs from WEB-INF/lib/jboss-seam.jar are being deployed so transaction synchronization fails. This may of course be due to my fix to (1).
| It would not be due to changes for 1. Most like due to an interaction with the new AnnotationMetaDataDeployer and the Ejb3Deployer. I don't think its processing war libs for ejb deployments.
My apologies, I was getting confused between the test structure and the deployed structure. The correct layout is:
jboss-seam.jar has no META-INF/ejb-jar.xml or jboss.xml but does have EJBs in it (in an app deployed to AS we make it an ejb module in application.xml). It is placed on the classpath which is used to boot embedded jboss however its EJBs aren't being picked up. This works in AS 4.2.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111054#4111054
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4111054
18 years, 4 months
[Design of JBoss/Tomcat Integration] - Unclean class loader on shutdown
by scott.stark@jboss.org
I'm seeing the following error during shutdown of the server:
| 15:27:45,023 INFO [TomcatDeployment] undeploy, ctxPath=/jmx-console, vfsUrl=jmx-console.war
| 15:27:45,025 INFO [TomcatDeployment] undeploy, ctxPath=/, vfsUrl=ROOT.war
| 15:27:45,178 ERROR [Http11Protocol] Error reading request, ignored
| java.lang.NullPointerException
| at org.jboss.mx.loading.RepositoryClassLoader.findClass(RepositoryClassLoader.java:549)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClassLocally(RepositoryClassLoader.java:225)
| at org.jboss.mx.loading.UnifiedLoaderRepository3.loadClassFromClassLoader(UnifiedLoaderRepository3.java:317)
| at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:284)
| at org.jboss.mx.loading.UnifiedClassLoader.loadClassImpl(UnifiedClassLoader.java:290)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:441)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
| at org.apache.coyote.http11.Http11Processor.initializeFilters(Http11Processor.java:1621)
| at org.apache.coyote.http11.Http11Processor.<init>(Http11Processor.java:94)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.createProcessor(Http11Protocol.java:637)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:587)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
| at java.lang.Thread.run(Thread.java:595)
| Exception in thread "http-127.0.0.1-8080-1" java.lang.NullPointerException
| at java.util.concurrent.ConcurrentLinkedQueue.offer(ConcurrentLinkedQueue.java:180)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler$1.offer(Http11Protocol.java:550)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler$1.offer(Http11Protocol.java:567)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:631)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
| at java.lang.Thread.run(Thread.java:595)
| 15:27:45,213 ERROR [AjpProtocol] Error reading request, ignored
| java.lang.NoClassDefFoundError: org/apache/coyote/ajp/AjpProcessor$SocketInputBuffer
| at org.apache.coyote.ajp.AjpProcessor.<init>(AjpProcessor.java:82)
| at org.apache.coyote.ajp.AjpProtocol$AjpConnectionHandler.createProcessor(AjpProtocol.java:417)
| at org.apache.coyote.ajp.AjpProtocol$AjpConnectionHandler.process(AjpProtocol.java:377)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
| at java.lang.Thread.run(Thread.java:595)
| Exception in thread "ajp-127.0.0.1-8009-1" java.lang.NullPointerException
| at java.util.concurrent.ConcurrentLinkedQueue.offer(ConcurrentLinkedQueue.java:180)
| at org.apache.coyote.ajp.AjpProtocol$AjpConnectionHandler$1.offer(AjpProtocol.java:340)
| at org.apache.coyote.ajp.AjpProtocol$AjpConnectionHandler$1.offer(AjpProtocol.java:357)
| at org.apache.coyote.ajp.AjpProtocol$AjpConnectionHandler.process(AjpProtocol.java:411)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
| at java.lang.Thread.run(Thread.java:595)
| 15:27:45,276 INFO [ServerImpl] Shutdown complete
|
The tomcat connector lifecycle is out of synch with the server class loader, which has already been unregistered with he deployment repository.
Related to other posts about updating tomcat integration in jbossas5, we need to have proper dependencies of all the beans making up the web container so this type of lifecycle problem is handled automatically.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111051#4111051
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4111051
18 years, 4 months
[Design of Security on JBoss] - Major regression in EJBSpecUnitTestCase run time
by scott.stark@jboss.org
I'm seeing a 10x increase in the runtime of the org.jboss.test.security.test.EJBSpecUnitTestCase under jbossas5 trunk vs jbossas4.2 trunk.
jbossas5:
[starksm@succubus testsuite]$ run_tests.sh
ant -Dtest=org.jboss.test.security.test.EJBSpecUnitTestCase -Dnojars=t -Djunit.timeout=1800000 -Djbosstest.cluster.node0=192.168.3.130 -Djbosstest.cluster.node1=192.168.3.120 -Djbosstest.threadcount=1 -Djbosstest.iterationcount=50 one-test
...
one-test:
[mkdir] Created dir: /home/svn/JBossHead/jboss-head/testsuite/output/log
[junit] Running org.jboss.test.security.test.EJBSpecUnitTestCase
[junit] Found log4j.xml: file:/home/svn/JBossHead/jboss-head/testsuite/output/resources/log4j.xml
[junit] Tests run: 25, Failures: 0, Errors: 4, Time elapsed: 55.844 sec
[junit] Test org.jboss.test.security.test.EJBSpecUnitTestCase FAILED
jbossas4.2:
[starksm@succubus testsuite]$ run_tests.sh
ant -Dtest=org.jboss.test.security.test.EJBSpecUnitTestCase -Dnojars=t -Djunit.timeout=1800000 -Djbosstest.cluster.node0=192.168.3.130 -Djbosstest.cluster.node1=192.168.3.120 -Djbosstest.threadcount=1 -Djbosstest.iterationcount=50 one-test
Buildfile: build.xml
one-test:
[mkdir] Created dir: /home/svn/JBossAS/JBoss4.2/Branch_4_2/testsuite/output/log
[junit] Running org.jboss.test.security.test.EJBSpecUnitTestCase
[junit] Tests run: 25, Failures: 0, Errors: 0, Time elapsed: 5.13 sec
BUILD SUCCESSFUL
Total time: 7 seconds
The majority of the time is spent in the 2 stress methods testStress, testStressNoJaasCache, which just make jbosstest.iterationcount (min 100) calls to a secure ejb using jbosstest.threadcount threads. Each iteration is just an ejb jaas-login/create/invoke/remove/jaas-logout cycle for a simple stateless ejb, so the delay is either in the security layer, or the remoting transport layer.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111050#4111050
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4111050
18 years, 4 months
[Design the new POJO MicroContainer] - Re: Case sensitivity in injecting a bean's property
by alesj
I already added this check while working on ProfileService:
| protected static String getAttributeName(String name)
| {
| if (name == null || name.length() == 0)
| throw new IllegalArgumentException("Illegal name: " + name);
|
| char firstCharacter = name.charAt(0);
| if (Character.isLowerCase(firstCharacter))
| {
| String attributeName = String.valueOf(Character.toUpperCase(firstCharacter));
| if (name.length() > 1)
| attributeName += name.substring(1);
| return attributeName;
| }
| return name;
| }
|
| public Object get(String name) throws Throwable
| {
| return getMBeanServer().getAttribute(objectName, getAttributeName(name));
| }
|
| public void set(String name, Object value) throws Throwable
| {
| Attribute attribute = new Attribute(getAttributeName(name), value);
| getMBeanServer().setAttribute(objectName, attribute);
| }
|
Since we explicitly go over MBeanServer, when accessing MBean's property in MC --> ServiceControllerContext, I see no need to do a switch check.
The test - ConfigureMCFromJMXWithPropertyUnitTestCase - was added to the system-jmx tests.
It checks access to the MBean's attribute both ways - uppercase and lower case first letter.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111008#4111008
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4111008
18 years, 4 months
[Design of POJO Server] - Re: EARDeploymentUnitTestCase failure
by alesj
Looks like Ejb3Deployer kicks in before RARParsingDeployer handles .rar file:
| 21:50:55,640 WARN [MainDeployer] undeploy 'file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear' : package not deployed
| 21:50:55,640 INFO [MainDeployer] deploy, url=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:55,750 DEBUG [MainDeployerImpl] Add deployment: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:55,750 TRACE [VFSStructuralDeployersImpl] Determining structure for testdeployers-ear1.ear deployers=[org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure@b1fea4, org.jboss.deployers.vfs.plugins.structure.war.WARStructure@bc22eb, org.jboss.deployment.EARStructure@1166179, org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc, org.jboss.deployers.vfs.plugins.structure.file.FileStructure@3f4a21 (proxied by org.jboss.deployers.vfs.plugins.structure.file.AOPContainerProxy$0@11bda67)]
| 21:50:55,750 TRACE [DeclaredStructure] JarHandler@7380169[path= context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear] is not a leaf
| 21:50:55,750 TRACE [DeclaredStructure] ... no META-INF/jboss-structure.xml.
| 21:50:55,750 TRACE [DeclaredStructure] JarHandler@7380169[path= context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear] isJBossStructure: false
| 21:50:55,750 TRACE [DeclaredStructure] Not recognised: testdeployers-ear1.ear
| 21:50:55,750 TRACE [WARStructure] ... no - doesn't look like a war and no WEB-INF subdirectory.
| 21:50:55,750 TRACE [WARStructure] Not recognised: testdeployers-ear1.ear
| 21:50:55,750 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@e0e5b7, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:55,750 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:55,750 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/namespaces set to: true
| 21:50:55,750 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/dynamic set to: true
| 21:50:55,750 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@e0e5b7, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:55,937 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@e0e5b7, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:55,968 TRACE [VFSStructuralDeployersImpl] Determining structure for testdeployers-mcf1-ds.xml deployers=[org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure@b1fea4, org.jboss.deployers.vfs.plugins.structure.war.WARStructure@bc22eb, org.jboss.deployment.EARStructure@1166179, org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc, org.jboss.deployers.vfs.plugins.structure.file.FileStructure@3f4a21 (proxied by org.jboss.deployers.vfs.plugins.structure.file.AOPContainerProxy$0@11bda67)]
| 21:50:55,968 TRACE [DeclaredStructure] Not recognised: testdeployers-mcf1-ds.xml
| 21:50:55,968 TRACE [WARStructure] ... no - not a directory or an archive.
| 21:50:55,968 TRACE [WARStructure] Not recognised: testdeployers-mcf1-ds.xml
| 21:50:55,968 TRACE [JARStructure] ... no - not a directory or an archive.
| 21:50:55,968 TRACE [JARStructure] Not recognised: testdeployers-mcf1-ds.xml
| 21:50:55,968 TRACE [FileStructure] JarEntryHandler(a)31113433[path=testdeployers-mcf1-ds.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/testdeployers-mcf1-ds.xml] is a leaf
| 21:50:55,968 TRACE [FileStructure] ... ok - not a top level file but it is a known name
| 21:50:55,968 TRACE [FileStructure] Added context ContextInfoImpl{path= metaData=null classPath=null} from testdeployers-mcf1-ds.xml
| 21:50:55,968 TRACE [FileStructure] JarEntryHandler(a)31113433[path=testdeployers-mcf1-ds.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/testdeployers-mcf1-ds.xml] isFile: true
| 21:50:55,968 TRACE [AOPContainerProxy$0] Recognised: testdeployers-mcf1-ds.xml
| 21:50:55,968 TRACE [VFSStructuralDeployersImpl] testdeployers-mcf1-ds.xml recognised by org.jboss.deployers.vfs.plugins.structure.file.FileStructure@3f4a21 (proxied by org.jboss.deployers.vfs.plugins.structure.file.AOPContainerProxy$0@11bda67)
| 21:50:55,968 TRACE [VFSStructuralDeployersImpl] Determining structure for testdeployers-bean1ejb.jar deployers=[org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure@b1fea4, org.jboss.deployers.vfs.plugins.structure.war.WARStructure@bc22eb, org.jboss.deployment.EARStructure@1166179, org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc, org.jboss.deployers.vfs.plugins.structure.file.FileStructure@3f4a21 (proxied by org.jboss.deployers.vfs.plugins.structure.file.AOPContainerProxy$0@11bda67)]
| 21:50:55,968 TRACE [DeclaredStructure] NestedJarHandler(a)11204850[path=testdeployers-bean1ejb.jar context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp] is not a leaf
| 21:50:55,968 TRACE [DeclaredStructure] ... no META-INF/jboss-structure.xml.
| 21:50:55,968 TRACE [DeclaredStructure] NestedJarHandler(a)11204850[path=testdeployers-bean1ejb.jar context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp] isJBossStructure: false
| 21:50:55,968 TRACE [DeclaredStructure] Not recognised: testdeployers-bean1ejb.jar
| 21:50:55,968 TRACE [WARStructure] ... no - doesn't look like a war and no WEB-INF subdirectory.
| 21:50:55,968 TRACE [WARStructure] Not recognised: testdeployers-bean1ejb.jar
| 21:50:55,968 TRACE [JARStructure] Added context ContextInfoImpl{path= metaData=META-INF classPath=null} from testdeployers-bean1ejb.jar
| 21:50:55,968 TRACE [JARStructure] Added classpath entry testdeployers-bean1ejb.jar for testdeployers-bean1ejb.jar from JarHandler@7380169[path= context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear]
| 21:50:55,968 TRACE [VFSStructuralDeployersImpl] Determining structure for META-INF deployers=[org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure@b1fea4, org.jboss.deployers.vfs.plugins.structure.war.WARStructure@bc22eb, org.jboss.deployment.EARStructure@1166179, org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc, org.jboss.deployers.vfs.plugins.structure.file.FileStructure@3f4a21 (proxied by org.jboss.deployers.vfs.plugins.structure.file.AOPContainerProxy$0@11bda67)]
| 21:50:55,968 TRACE [DeclaredStructure] JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] is not a leaf
| 21:50:55,968 TRACE [DeclaredStructure] ... no META-INF/jboss-structure.xml.
| 21:50:55,968 TRACE [DeclaredStructure] JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] isJBossStructure: false
| 21:50:55,968 TRACE [DeclaredStructure] Not recognised: META-INF
| 21:50:55,968 TRACE [WARStructure] ... no - doesn't look like a war and no WEB-INF subdirectory.
| 21:50:55,968 TRACE [WARStructure] Not recognised: META-INF
| 21:50:55,968 TRACE [JARStructure] ... no - doesn't look like a jar and no META-INF subdirectory.
| 21:50:55,968 TRACE [JARStructure] Not recognised: META-INF
| 21:50:55,968 TRACE [FileStructure] ... no - not a file.
| 21:50:55,968 TRACE [AOPContainerProxy$0] Not recognised: META-INF
| 21:50:55,968 TRACE [VFSStructuralDeployersImpl] META-INF not recognised
| 21:50:55,968 TRACE [VFSStructuralDeployersImpl] Determining structure for org deployers=[org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure@b1fea4, org.jboss.deployers.vfs.plugins.structure.war.WARStructure@bc22eb, org.jboss.deployment.EARStructure@1166179, org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc, org.jboss.deployers.vfs.plugins.structure.file.FileStructure@3f4a21 (proxied by org.jboss.deployers.vfs.plugins.structure.file.AOPContainerProxy$0@11bda67)]
| 21:50:55,968 TRACE [DeclaredStructure] JarEntryHandler(a)13411769[path=testdeployers-bean1ejb.jar/org context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/org/] is not a leaf
| 21:50:55,968 TRACE [DeclaredStructure] ... no META-INF/jboss-structure.xml.
| 21:50:55,968 TRACE [DeclaredStructure] JarEntryHandler(a)13411769[path=testdeployers-bean1ejb.jar/org context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/org/] isJBossStructure: false
| 21:50:55,968 TRACE [DeclaredStructure] Not recognised: org
| 21:50:55,968 TRACE [WARStructure] ... no - doesn't look like a war and no WEB-INF subdirectory.
| 21:50:55,968 TRACE [WARStructure] Not recognised: org
| 21:50:55,968 TRACE [JARStructure] ... no - doesn't look like a jar and no META-INF subdirectory.
| 21:50:55,968 TRACE [JARStructure] Not recognised: org
| 21:50:55,968 TRACE [FileStructure] ... no - not a file.
| 21:50:55,968 TRACE [AOPContainerProxy$0] Not recognised: org
| 21:50:55,968 TRACE [VFSStructuralDeployersImpl] org not recognised
| 21:50:55,968 TRACE [JARStructure] Recognised: testdeployers-bean1ejb.jar
| 21:50:55,968 TRACE [VFSStructuralDeployersImpl] testdeployers-bean1ejb.jar recognised by org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc
| 21:50:55,984 TRACE [VFSStructuralDeployersImpl] Determining structure for testdeployers-client1.jar deployers=[org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure@b1fea4, org.jboss.deployers.vfs.plugins.structure.war.WARStructure@bc22eb, org.jboss.deployment.EARStructure@1166179, org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc, org.jboss.deployers.vfs.plugins.structure.file.FileStructure@3f4a21 (proxied by org.jboss.deployers.vfs.plugins.structure.file.AOPContainerProxy$0@11bda67)]
| 21:50:55,984 TRACE [DeclaredStructure] NestedJarHandler(a)26489034[path=testdeployers-client1.jar context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp] is not a leaf
| 21:50:55,984 TRACE [DeclaredStructure] ... no META-INF/jboss-structure.xml.
| 21:50:55,984 TRACE [DeclaredStructure] NestedJarHandler(a)26489034[path=testdeployers-client1.jar context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp] isJBossStructure: false
| 21:50:55,984 TRACE [DeclaredStructure] Not recognised: testdeployers-client1.jar
| 21:50:55,984 TRACE [WARStructure] ... no - doesn't look like a war and no WEB-INF subdirectory.
| 21:50:55,984 TRACE [WARStructure] Not recognised: testdeployers-client1.jar
| 21:50:55,984 TRACE [JARStructure] Added context ContextInfoImpl{path= metaData=META-INF classPath=null} from testdeployers-client1.jar
| 21:50:55,984 TRACE [JARStructure] Added classpath entry testdeployers-client1.jar for testdeployers-client1.jar from JarHandler@7380169[path= context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear]
| 21:50:55,984 TRACE [VFSStructuralDeployersImpl] Determining structure for META-INF deployers=[org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure@b1fea4, org.jboss.deployers.vfs.plugins.structure.war.WARStructure@bc22eb, org.jboss.deployment.EARStructure@1166179, org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc, org.jboss.deployers.vfs.plugins.structure.file.FileStructure@3f4a21 (proxied by org.jboss.deployers.vfs.plugins.structure.file.AOPContainerProxy$0@11bda67)]
| 21:50:55,984 TRACE [DeclaredStructure] JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] is not a leaf
| 21:50:55,984 TRACE [DeclaredStructure] ... no META-INF/jboss-structure.xml.
| 21:50:55,984 TRACE [DeclaredStructure] JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] isJBossStructure: false
| 21:50:55,984 TRACE [DeclaredStructure] Not recognised: META-INF
| 21:50:55,984 TRACE [WARStructure] ... no - doesn't look like a war and no WEB-INF subdirectory.
| 21:50:55,984 TRACE [WARStructure] Not recognised: META-INF
| 21:50:55,984 TRACE [JARStructure] ... no - doesn't look like a jar and no META-INF subdirectory.
| 21:50:55,984 TRACE [JARStructure] Not recognised: META-INF
| 21:50:55,984 TRACE [FileStructure] ... no - not a file.
| 21:50:55,984 TRACE [AOPContainerProxy$0] Not recognised: META-INF
| 21:50:55,984 TRACE [VFSStructuralDeployersImpl] META-INF not recognised
| 21:50:55,984 TRACE [JARStructure] Recognised: testdeployers-client1.jar
| 21:50:55,984 TRACE [VFSStructuralDeployersImpl] testdeployers-client1.jar recognised by org.jboss.deployers.vfs.plugins.structure.jar.JARStructure@8c02cc
| 21:50:55,984 TRACE [VFSStructuralDeployersImpl] testdeployers-ear1.ear recognised by org.jboss.deployment.EARStructure@1166179
| 21:50:55,984 TRACE [VFSStructureBuilder] Populating deployment vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear metaData=StructureMetaDataImpl{contexts=[ContextInfoImpl{path= metaData=META-INF classPath=null}, ContextInfoImpl{path=testdeployers-mcf1-ds.xml metaData=null classPath=null}, ContextInfoImpl{path=testdeployers-bean1ejb.jar metaData=META-INF classPath=[ClassPathEntryImpl{path=testdeployers-bean1ejb.jar}]}, ContextInfoImpl{path=testdeployers-client1.jar metaData=META-INF classPath=[ClassPathEntryImpl{path=testdeployers-client1.jar}]}]}
| 21:50:55,984 TRACE [VFSStructureBuilder] Apply context: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ContextInfoImpl{path= metaData=META-INF classPath=null}
| 21:50:55,984 TRACE [VFSStructureBuilder] Populating Context vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear metaData=StructureMetaDataImpl{contexts=[ContextInfoImpl{path= metaData=META-INF classPath=null}, ContextInfoImpl{path=testdeployers-mcf1-ds.xml metaData=null classPath=null}, ContextInfoImpl{path=testdeployers-bean1ejb.jar metaData=META-INF classPath=[ClassPathEntryImpl{path=testdeployers-bean1ejb.jar}]}, ContextInfoImpl{path=testdeployers-client1.jar metaData=META-INF classPath=[ClassPathEntryImpl{path=testdeployers-client1.jar}]}]}
| 21:50:55,984 TRACE [VFSStructureBuilder] Apply context: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml ContextInfoImpl{path=testdeployers-mcf1-ds.xml metaData=null classPath=null}
| 21:50:55,984 TRACE [VFSStructureBuilder] Populating Context vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml metaData=StructureMetaDataImpl{contexts=[ContextInfoImpl{path= metaData=null classPath=null}]}
| 21:50:55,984 TRACE [VFSStructureBuilder] Apply context: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar ContextInfoImpl{path=testdeployers-bean1ejb.jar metaData=META-INF classPath=[ClassPathEntryImpl{path=testdeployers-bean1ejb.jar}]}
| 21:50:55,984 TRACE [VFSStructureBuilder] Resolving classpath entry ClassPathEntryImpl{path=testdeployers-bean1ejb.jar} for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:55,984 TRACE [AbstractVFSDeploymentContext] ClassPath for testdeployers-bean1ejb.jar is testdeployers-bean1ejb.jar
| 21:50:55,984 TRACE [VFSStructureBuilder] Populating Context vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar metaData=StructureMetaDataImpl{contexts=[ContextInfoImpl{path= metaData=META-INF classPath=[ClassPathEntryImpl{path=testdeployers-bean1ejb.jar}]}]}
| 21:50:55,984 TRACE [VFSStructureBuilder] Apply context: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar ContextInfoImpl{path=testdeployers-client1.jar metaData=META-INF classPath=[ClassPathEntryImpl{path=testdeployers-client1.jar}]}
| 21:50:55,984 TRACE [VFSStructureBuilder] Resolving classpath entry ClassPathEntryImpl{path=testdeployers-client1.jar} for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:55,984 TRACE [AbstractVFSDeploymentContext] ClassPath for testdeployers-client1.jar is testdeployers-client1.jar
| 21:50:55,984 TRACE [VFSStructureBuilder] Populating Context vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar metaData=StructureMetaDataImpl{contexts=[ContextInfoImpl{path= metaData=META-INF classPath=[ClassPathEntryImpl{path=testdeployers-client1.jar}]}]}
| 21:50:55,984 DEBUG [MainDeployerImpl] Scheduling deployment: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear parent=null
| 21:50:55,984 DEBUG [MainDeployerImpl] Scheduling deployment: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar parent=AbstractVFSDeploymentContext@29977346{vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear}
| 21:50:55,984 DEBUG [MainDeployerImpl] Scheduling deployment: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar parent=AbstractVFSDeploymentContext@29977346{vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear}
| 21:50:55,984 DEBUG [MainDeployerImpl] Scheduling deployment: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml parent=AbstractVFSDeploymentContext@29977346{vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear}
| 21:50:56,000 TRACE [DeployersImpl] Deployers for Not Installed []
| 21:50:56,000 TRACE [DeployersImpl] Deployers for Not Installed []
| 21:50:56,000 DEBUG [DeployersImpl] Deploying vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,000 TRACE [DeployersImpl] Deployers for Parse [org.jboss.deployers.vfs.deployer.kernel.BeanDeployer@1c5a33b, org.jboss.deployment.AppParsingDeployer@1382988, org.jboss.deployment.JBossAppParsingDeployer@489670, org.jboss.ejb3.deployers.AppClientParsingDeployer@1f9eba0, org.jboss.ejb3.deployers.JBossClientParsingDeployer@1ee1619, org.jboss.ejb3.deployers.PersistenceUnitParsingDeployer@176feaf, org.jboss.resource.deployers.ManagedConnectionFactoryParserDeployer@13fe4e4, org.jboss.resource.deployers.RARParserDeployer@ba3b30, org.jboss.system.deployers.SARDeployer@552379, org.jboss.varia.deployment.LegacyBeanShellDeployer@3da1dc, org.jboss.deployment.EARContentsDeployer@a6343d, org.jboss.deployment.WebAppParsingDeployer@1fcc4f8, org.jboss.deployment.JBossWebAppParsingDeployer@1af2a9c, org.jboss.web.tomcat.service.deployers.ClusteringDefaultsDeployer@1516070, org.jboss.deployment.EjbParsingDeployer@7834eb, org.jboss.deployment.JBossEjbParsingDeployer@e5d155]
| 21:50:56,000 TRACE [BeanDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,000 TRACE [BeanDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,000 TRACE [BeanDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:56,000 TRACE [BeanDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:56,000 TRACE [BeanDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:56,000 TRACE [BeanDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:56,000 TRACE [BeanDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:50:56,000 TRACE [BeanDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:50:56,000 TRACE [AbstractVFSDeploymentContext] Found application.xml in META-INF
| 21:50:56,000 DEBUG [AppParsingDeployer] Parsing file: JarEntryHandler(a)14759619[path=META-INF/application.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/application.xml] for deploymentType: class org.jboss.metadata.ear.spec.EarMetaData
| 21:50:56,000 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@1d241c9, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:56,000 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:56,000 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/namespaces set to: true
| 21:50:56,000 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/dynamic set to: true
| 21:50:56,000 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/schema set to: true
| 21:50:56,000 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:56,000 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@1d241c9, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:56,140 DEBUG [AppParsingDeployer] Parsed file: JarEntryHandler(a)14759619[path=META-INF/application.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/application.xml] to: org.jboss.metadata.ear.spec.Ear14MetaData@1f
| 21:50:56,140 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: application.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: application.xml
| 21:50:56,156 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: application.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: application.xml
| 21:50:56,156 TRACE [AbstractVFSDeploymentContext] Found jboss-app.xml in META-INF
| 21:50:56,156 DEBUG [JBossAppParsingDeployer] Parsing file: JarEntryHandler(a)1307084[path=META-INF/jboss-app.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/jboss-app.xml] for deploymentType: class org.jboss.metadata.ear.jboss.JBossAppMetaData
| 21:50:56,156 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@167be7c, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/namespaces set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/dynamic set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/schema set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@167be7c, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:56,156 DEBUG [JBossAppParsingDeployer] Parsed file: JarEntryHandler(a)1307084[path=META-INF/jboss-app.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/jboss-app.xml] to: org.jboss.metadata.ear.jboss.JBoss50DTDAppMetaData@1f
| 21:50:56,156 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss-app.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: jboss-app.xml
| 21:50:56,156 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss-app.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: jboss-app.xml
| 21:50:56,156 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: application-client.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: application-client.xml
| 21:50:56,156 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: application-client.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: application-client.xml
| 21:50:56,156 TRACE [AbstractVFSDeploymentContext] Found application-client.xml in META-INF
| 21:50:56,156 DEBUG [AppClientParsingDeployer] Parsing file: JarEntryHandler(a)8277841[path=testdeployers-client1.jar/META-INF/application-client.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/application-client.xml] for deploymentType: class org.jboss.metadata.client.spec.ApplicationClientMetaData
| 21:50:56,156 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@8969c3, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/namespaces set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/dynamic set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/schema set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:56,156 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@8969c3, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:56,265 DEBUG [AppClientParsingDeployer] Parsed file: JarEntryHandler(a)8277841[path=testdeployers-client1.jar/META-INF/application-client.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/application-client.xml] to: org.jboss.metadata.client.spec.ApplicationClient14MetaData@1f
| 21:50:56,265 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss-client.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: jboss-client.xml
| 21:50:56,265 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss-client.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: jboss-client.xml
| 21:50:56,265 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss-client.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: jboss-client.xml
| 21:50:56,265 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: persistence.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: persistence.xml
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: persistence.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: persistence.xml
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: persistence.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: persistence.xml
| 21:50:56,281 TRACE [ManagedConnectionFactoryParserDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,281 TRACE [ManagedConnectionFactoryParserDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,281 TRACE [ManagedConnectionFactoryParserDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:56,281 TRACE [ManagedConnectionFactoryParserDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:56,281 TRACE [ManagedConnectionFactoryParserDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:56,281 TRACE [ManagedConnectionFactoryParserDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:56,281 TRACE [ManagedConnectionFactoryParserDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:50:56,281 TRACE [ManagedConnectionFactoryParserDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:50:56,281 TRACE [RARParserDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: ra.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: ra.xml
| 21:50:56,281 TRACE [RARParserDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,281 TRACE [RARParserDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: ra.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: ra.xml
| 21:50:56,281 TRACE [RARParserDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:56,281 TRACE [RARParserDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: ra.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: ra.xml
| 21:50:56,281 TRACE [RARParserDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:56,281 TRACE [RARParserDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:50:56,281 TRACE [RARParserDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Found application.xml in META-INF
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: web.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: web.xml
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: web.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: web.xml
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: web.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: web.xml
| 21:50:56,281 TRACE [DeployersImpl] Deployer org.jboss.deployment.JBossWebAppParsingDeployer@1af2a9c not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,281 TRACE [DeployersImpl] Deployer org.jboss.deployment.JBossWebAppParsingDeployer@1af2a9c not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:56,281 TRACE [DeployersImpl] Deployer org.jboss.deployment.JBossWebAppParsingDeployer@1af2a9c not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:56,281 TRACE [DeployersImpl] Deployer org.jboss.deployment.JBossWebAppParsingDeployer@1af2a9c not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:50:56,281 TRACE [DeployersImpl] Deployer org.jboss.web.tomcat.service.deployers.ClusteringDefaultsDeployer@1516070 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:50:56,281 TRACE [DeployersImpl] Deployer org.jboss.web.tomcat.service.deployers.ClusteringDefaultsDeployer@1516070 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:50:56,281 TRACE [DeployersImpl] Deployer org.jboss.web.tomcat.service.deployers.ClusteringDefaultsDeployer@1516070 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:50:56,281 TRACE [DeployersImpl] Deployer org.jboss.web.tomcat.service.deployers.ClusteringDefaultsDeployer@1516070 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: ejb-jar.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: ejb-jar.xml
| 21:50:56,281 TRACE [AbstractVFSDeploymentContext] Found ejb-jar.xml in META-INF
| 21:50:56,281 DEBUG [EjbParsingDeployer] Parsing file: JarEntryHandler(a)29574631[path=testdeployers-bean1ejb.jar/META-INF/ejb-jar.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/ejb-jar.xml] for deploymentType: class org.jboss.metadata.ejb.spec.EjbJarMetaData
| 21:50:56,281 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@1225d4a, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:56,281 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:56,281 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/namespaces set to: true
| 21:50:56,281 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/dynamic set to: true
| 21:50:56,281 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/schema set to: true
| 21:50:56,281 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:56,281 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@1225d4a, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:58,921 WARN [CollectionPropertyHandler] ClassInfo.getDeclaredConstructor(null) didn't work for org.jboss.metadata.ejb.spec.InterceptorClassesMetaData, found the default ctor in ClassInfo.getDeclaredConstructors()
| 21:50:58,968 DEBUG [EjbParsingDeployer] Parsed file: JarEntryHandler(a)29574631[path=testdeployers-bean1ejb.jar/META-INF/ejb-jar.xml context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/ejb-jar.xml] to: org.jboss.metadata.ejb.spec.EjbJar21MetaData@1f
| 21:50:58,968 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: ejb-jar.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: ejb-jar.xml
| 21:50:58,968 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: jboss.xml
| 21:50:58,968 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: jboss.xml
| 21:50:58,968 DEBUG [JBossEjbParsingDeployer] Parsing file: FileHandler@12681966[path= context=file:/C:/projects/jboss5/trunk/build/output/jboss-5.0.0.Beta3/server/all/conf/standardjboss.xml real=file:/C:/projects/jboss5/trunk/build/output/jboss-5.0.0.Beta3/server/all/conf/standardjboss.xml] for deploymentType: class org.jboss.metadata.ejb.jboss.JBossMetaData
| 21:50:58,968 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@7b0aef, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:50:58,968 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:58,968 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/namespaces set to: true
| 21:50:58,968 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/dynamic set to: true
| 21:50:58,968 DEBUG [SaxJBossXBParser] http://apache.org/xml/features/validation/schema set to: false
| 21:50:58,968 DEBUG [SaxJBossXBParser] http://xml.org/sax/features/validation set to: true
| 21:50:59,031 DEBUG [SaxJBossXBParser] Created parser: org.apache.xerces.jaxp.SAXParserImpl@7b0aef, isNamespaceAware: true, isValidating: true, isXIncludeAware: true
| 21:51:00,484 DEBUG [JBossEntityResolver] Cannot resolve [publicID=,systemID=null]
| 21:51:00,765 DEBUG [JBossEjbParsingDeployer] Parsed file: FileHandler@12681966[path= context=file:/C:/projects/jboss5/trunk/build/output/jboss-5.0.0.Beta3/server/all/conf/standardjboss.xml real=file:/C:/projects/jboss5/trunk/build/output/jboss-5.0.0.Beta3/server/all/conf/standardjboss.xml] to: org.jboss.metadata.ejb.jboss.JBoss50DTDMetaData@1f
| 21:51:00,765 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: jboss.xml
| 21:51:00,765 TRACE [DeployersImpl] Deployers for Describe [org.jboss.aop.asintegration.jboss5.AspectAppParsingDeployer@1e14a78]
| 21:51:00,765 TRACE [DeployersImpl] Deployers for ClassLoader [org.jboss.system.deployers.ServiceClassLoaderDeployer@166ff9c]
| 21:51:00,765 DEBUG [RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@16f8834, cl=org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=0}
| 21:51:00,765 DEBUG [RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@16f8834, cl=org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=0}
| 21:51:00,765 DEBUG [UnifiedLoaderRepository3] Adding org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=0}
| 21:51:00,937 DEBUG [UnifiedLoaderRepository3] Multiple class loaders found for pkg:
| 21:51:01,015 DEBUG [RepositoryClassLoader] Added url: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=62}
| 21:51:01,015 DEBUG [RepositoryClassLoader] Added url: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=62}
| 21:51:01,015 TRACE [AbstractDeploymentContext] ClassLoader for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear is org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=62}
| 21:51:01,015 TRACE [AbstractDeploymentContext] ClassLoader for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar is org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=62}
| 21:51:01,015 TRACE [AbstractDeploymentContext] ClassLoader for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar is org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=62}
| 21:51:01,015 TRACE [AbstractDeploymentContext] ClassLoader for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml is org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=62}
| 21:51:01,015 TRACE [DeployersImpl] Deployers for PostClassLoader [org.jboss.aop.deployers.AspectDeployer@627b5c, org.jboss.deployment.AnnotationMetaDataDeployer@15a68d, org.jboss.ejb.deployers.MergedJBossMetaDataDeployer@9ddfa3, org.jboss.ejb.deployers.StandardJBossMetaDataDeployer@11cbec9, org.jboss.deployment.ReferenceMetaDataResolverDeployer@c04fd1]
| 21:51:01,031 DEBUG [RepositoryClassLoader] Added url: file:/C:/projects/jboss5/trunk/build/output/jboss-5.0.0.Beta3/server/all/tmp/aopdynclasses/ucl56671/?dynamic=true, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@10b2fd9{ url=vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear ,addedOrder=62}
| 21:51:01,218 DEBUG [ReferenceMetaDataResolverDeployer] Processing unit:
|
| +testdeployers-bean1ejb.jar,ejbName=Bean1EJB,ejbClass=org.jboss.test.deployers.ejb.bean1.Bean1,home=org.jboss.test.deployers.ejb.bean1.Bean1Home,remote=org.jboss.test.deployers.ejb.bean1.Bean1Remote
| +testdeployers-client1.jar
| +testdeployers-mcf1-ds.xml
|
| 21:51:01,218 DEBUG [ReferenceMetaDataResolverDeployer] Processing unit:
|
| +testdeployers-bean1ejb.jar,ejbName=Bean1EJB,ejbClass=org.jboss.test.deployers.ejb.bean1.Bean1,home=org.jboss.test.deployers.ejb.bean1.Bean1Home,remote=org.jboss.test.deployers.ejb.bean1.Bean1Remote
| +testdeployers-client1.jar
| +testdeployers-mcf1-ds.xml
|
| 21:51:01,218 TRACE [DeployersImpl] Deployers for Real [org.jboss.wsf.container.jboss50.WebServiceDeployerPreJSE@c11b55, org.jboss.deployers.vfs.deployer.kernel.KernelDeploymentDeployer@17644c8, org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer@1f6f3dc, org.jboss.deployment.security.SecurityDeployer@a79a6a, org.jboss.ejb.deployers.EjbDeployer@986975, org.jboss.ejb3.deployers.AppClientScanningDeployer@dc91e2, org.jboss.ejb3.deployers.Ejb3ClientDeployer@1acf5f7, org.jboss.ejb3.deployers.Ejb3Deployer@1ece626, org.jboss.ejb3.deployers.EJBStage2Deployer@edc33d, org.jboss.resource.deployers.ManagedConnectionFactoryDeployer@838de0, org.jboss.resource.deployers.RARDeployer@15c0d7, org.jboss.varia.deployment.LegacyBeanShellScriptDeployer@1233bdc, org.jboss.web.tomcat.service.deployers.TomcatDeployer@105a8c9, org.jboss.system.deployers.ServiceDeploymentDeployer@128453c, org.jboss.system.deployers.ServiceDeployer@33c78b, org.jboss.wsf.container.jboss50.WebServiceDeployerEJB@1e96ffd, org.jboss.wsf.container.jboss50.WebServiceDeployerPostJSE@18ad183]
| 21:51:01,218 TRACE [KernelDeploymentDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:51:01,218 TRACE [KernelDeploymentDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:51:01,218 TRACE [KernelDeploymentDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:51:01,218 TRACE [KernelDeploymentDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:51:01,218 TRACE [KernelDeploymentDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,218 TRACE [KernelDeploymentDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,218 TRACE [KernelDeploymentDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,218 TRACE [KernelDeploymentDeployer] Deployed: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,218 TRACE [DeployersImpl] Deployer org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer@1f6f3dc not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:51:01,218 TRACE [DeployersImpl] Deployer org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer@1f6f3dc not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:51:01,218 TRACE [DeployersImpl] Deployer org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer@1f6f3dc not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,218 TRACE [DeployersImpl] Deployer org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer@1f6f3dc not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,218 TRACE [AbstractVFSDeploymentContext] Found ejb-jar.xml in META-INF
| 21:51:01,218 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)12456097[path=testdeployers-bean1ejb.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56641.tmp!/META-INF/] has no child: jboss.xml
| 21:51:01,218 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: ejb-jar.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: ejb-jar.xml
| 21:51:01,218 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: jboss.xml
| 21:51:01,218 TRACE [DeployersImpl] Deployer org.jboss.deployment.security.SecurityDeployer@a79a6a not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:51:01,218 TRACE [DeployersImpl] Deployer org.jboss.deployment.security.SecurityDeployer@a79a6a not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,218 TRACE [DeployersImpl] Deployer org.jboss.deployment.security.SecurityDeployer@a79a6a not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,218 TRACE [DeployersImpl] Deployer org.jboss.ejb.deployers.EjbDeployer@986975 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:51:01,296 TRACE [DeployersImpl] Deployer org.jboss.ejb.deployers.EjbDeployer@986975 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,296 TRACE [DeployersImpl] Deployer org.jboss.ejb.deployers.EjbDeployer@986975 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,296 TRACE [AbstractVFSDeploymentContext] Found MANIFEST.MF in META-INF
| 21:51:01,296 TRACE [AbstractVFSDeploymentContext] Found MANIFEST.MF in META-INF
| 21:51:01,296 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.Ejb3ClientDeployer@1acf5f7 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:51:01,296 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.Ejb3ClientDeployer@1acf5f7 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:51:01,296 DEBUG [Ejb3ClientDeployer] deploy vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,296 DEBUG [Ejb3ClientDeployer] Creating client ENC binding under: Test Deployers Client1
| 21:51:01,296 DEBUG [Util] atom: testdeployers-client1
| 21:51:01,296 DEBUG [Util] link: Reference Class Name: javax.naming.LinkRef
| Type: LinkAddress
| Content: Test Deployers Client1
|
| 21:51:01,296 DEBUG [Util] Bound link testdeployers-client1 to Test Deployers Client1
| 21:51:01,390 TRACE [AbstractVFSDeploymentContext] Found MANIFEST.MF in META-INF
| 21:51:01,640 INFO [MCKernelAbstraction] installing bean: jboss.j2ee:ear=testdeployers-ear1.ear,jar=testdeployers-client1.jar,name=Test Deployers Client1,service=EJB3 with dependencies:
| 21:51:01,640 INFO [MCKernelAbstraction] and supplies:
| 21:51:01,921 INFO [ClientENCInjectionContainer] STARTED CLIENT ENC CONTAINER: Test Deployers Client1
| 21:51:01,921 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.Ejb3ClientDeployer@1acf5f7 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,921 DEBUG [Ejb3Deployer] ********* Ejb3Deployer Begin Unit: testdeployers-ear1.ear jar: testdeployers-ear1.ear
| 21:51:01,937 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: ejb-jar.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: ejb-jar.xml
| 21:51:01,937 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss.xml reason=java.io.FileNotFoundException: JarEntryHandler@21325020[path=META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear!/META-INF/] has no child: jboss.xml
| 21:51:01,937 DEBUG [Ejb3Deployment] EJB3 deployment time took: 0
| 21:51:01,937 DEBUG [Ejb3Deployer] Ignoring legacy EJB deployment org.jboss.deployers.vfs.plugins.structure.AbstractVFSDeploymentUnit@5309d8
| 21:51:01,937 DEBUG [Ejb3Deployer] ********* Ejb3Deployer Begin Unit: testdeployers-client1.jar jar: testdeployers-client1.jar
| 21:51:01,937 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: ejb-jar.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: ejb-jar.xml
| 21:51:01,937 TRACE [AbstractVFSDeploymentContext] Error retrieving meta data: jboss.xml reason=java.io.FileNotFoundException: JarEntryHandler(a)997697[path=testdeployers-client1.jar/META-INF context=file:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear real=jar:file:/C:/DOCUME~1/Ales/LOCALS~1/Temp/nestedjar56642.tmp!/META-INF/] has no child: jboss.xml
| 21:51:01,937 DEBUG [Ejb3Deployment] EJB3 deployment time took: 0
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.EJBStage2Deployer@edc33d not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.EJBStage2Deployer@edc33d not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.EJBStage2Deployer@edc33d not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.EJBStage2Deployer@edc33d not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.resource.deployers.ManagedConnectionFactoryDeployer@838de0 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.resource.deployers.ManagedConnectionFactoryDeployer@838de0 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.resource.deployers.ManagedConnectionFactoryDeployer@838de0 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,937 TRACE [ManagedConnectionFactoryDeployer] Deploying: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,937 DEBUG [ManagedConnectionFactoryDeployer] Error during deploy: vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| java.lang.IllegalStateException: No ConnectorMetaData found for mdf rarName: testdeployers-ear1.ear#testdeployers-mcf1.rar
| at org.jboss.resource.deployers.builder.ManagedConnectionFactoryBuilder.buildConstructor(ManagedConnectionFactoryBuilder.java:83)
| at org.jboss.resource.deployers.builder.AbstractBuilder.buildService(AbstractBuilder.java:56)
| at org.jboss.resource.deployers.builder.AbstractBuilder.build(AbstractBuilder.java:65)
| at org.jboss.resource.deployers.ManagedConnectionFactoryDeployer.deploy(ManagedConnectionFactoryDeployer.java:177)
| at org.jboss.resource.deployers.ManagedConnectionFactoryDeployer.deploy(ManagedConnectionFactoryDeployer.java:52)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:65)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:169)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:853)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:906)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:794)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:327)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1309)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:734)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:862)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:622)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:411)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:498)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:506)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:813)
| at org.jboss.deployment.MainDeployer.redeploy(MainDeployer.java:588)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.jmx.connector.invoker.InvokerAdaptorService.invoke(InvokerAdaptorService.java:270)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:138)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:140)
| at org.jboss.jmx.connector.invoker.SerializableInterceptor.invoke(SerializableInterceptor.java:74)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
| at org.jboss.invocation.jrmp.server.JRMPProxyFactory.invoke(JRMPProxyFactory.java:179)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
| at org.jboss.invocation.jrmp.server.JRMPInvoker$MBeanServerAction.invoke(JRMPInvoker.java:815)
| at org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:416)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
| at sun.rmi.transport.Transport$1.run(Transport.java:153)
| at java.security.AccessController.doPrivileged(Native Method)
| at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
| at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
| at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
| at java.lang.Thread.run(Thread.java:595)
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.resource.deployers.ManagedConnectionFactoryDeployer@838de0 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-client1.jar
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.resource.deployers.ManagedConnectionFactoryDeployer@838de0 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-bean1ejb.jar
| 21:51:01,937 TRACE [DeployersImpl] Deployer org.jboss.resource.deployers.ManagedConnectionFactoryDeployer@838de0 not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear
| 21:51:01,953 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.EJBStage2Deployer@edc33d not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers-ear1.ear/testdeployers-mcf1-ds.xml
| 21:51:01,953 TRACE [DeployersImpl] Deployer org.jboss.ejb3.deployers.EJBStage2Deployer@edc33d not relevant for vfsfile:/C:/projects/jboss5/trunk/testsuite/output/lib/testdeployers
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4110999#4110999
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4110999
18 years, 4 months