So you have more than one application that you want to deploy in the same JBoss container. Presumably you have classes in one application that need to call methods for the classes in a different application. Here are your options:
1- Combine the applications into one ear with a separate classloader 2- Deploy the applications separately in the same classloader 3- Deploy the applications separately in separate classloaders and use call by value 4- Deploy the applications separately in separate classloaders and use call by reference Read more infos: http://www.middleware.vt.edu/doku.php?id=middleware:jboss:classloading Amjad View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4217752#4217752 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4217752 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
