-- xxxxxxxxxxxxxxxxxxxxxxxx Scott Stark Chief Technology Officer JBoss Group, LLC xxxxxxxxxxxxxxxxxxxxxxxx
Rod Macpherson wrote:
Perhaps 3.2.2 is being more compliant insofar as a war is not supposed to access classes outside WEB-INF/lib or WEB-INF/classes. The solution would be to specify backend.jar in your war's manifest and that would explain why we do not see the problem you are having: we never use WEB-INF/lib or WEB-INF/classes but rather stipulate what jars we use in the manifest and place those in the EAR root:
Manifest-Version: 1.0 Class-Path: backend.jar
------------------------------------------------------- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
