-
1. Re: Classloading Issues
jesper.pedersen Dec 10, 2012 1:12 PM (in response to sacarro)Use nightly snapshot before reporting problems
-
2. Re: Classloading Issues
sacarro Dec 10, 2012 1:46 PM (in response to jesper.pedersen)Jesper,
Thanks for the quick reply. I did that with the downloaded artifact here: https://ci.jboss.org/jenkins/job/JBoss-AS-7.x-latest/ which is 7.2.0.Alpha1-SNAPSHOT. I am not sure that is 100% correct because I don't see it in the main panel: https://ci.jboss.org/hudson/view/JBoss%20AS/
I get the same error however which makes me feel that I am missing a piece to the puzzle. Nothing seems to error out or report problems in the log (logging is set to debug). Is there a log statement that would tell me whether it is trying to load from the resource adapter or if it cannot find the resource adapter I am requesting?
I followed you help here:
https://community.jboss.org/thread/171671
So if that has changed then I am off the path.
Thanks!
-
3. Re: Classloading Issues
sacarro Dec 10, 2012 3:15 PM (in response to jesper.pedersen)Jesper,
I ended up adding a META-INF/jboss-deployment-structure.xml that included
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.0">
<deployment>
<dependencies>
<module name="deployment.test.rar" slot="main" />
</dependencies>
</deployment>
</jboss-deployment-structure>
That seems to resolve the class loading issue.