I have the following problem:
Two wars are deployed to a tomcat 5.1 Application Server.
War1 registeres some MBeans that will return Objects of types defined in War1
War2 tries to access the MBean but Gets a ClassCastException when getting trying to cast the Object retrieved to The Object expected. The class of the Object is provided in a Jar to the war2.
I found out that the Object passed to war2 was loaded by the classLoader of the war1. In order to solve the problem I would like to call the MBean Method by value and not by reference as it appears to be now.
Can anyone tell me how to change that in JBoss?