have you tried defining the jars in the application.xml file inside the ear? 

what you'll end up having is something like this (there are no jar files contained in 
the WEB-INF\lib directory of the war):


my.ear
  + META-INF
     + application.xml
  + utility.jar
  + ejb.jar
  + webapp.war


and your application.xml file will look like this:


  | <?xml version="1.0" encoding="UTF-8"?>
  |   
  | <application>
  |   <display-name>My App</display-name>
  | 
  |   <module>
  |     <java>utility.jar</java>
  |   </module>
  | 
  |   <module>
  |     <ejb>ejb.jar</ejb>
  |   </module>
  |   
  |   <module>
  |     <web>
  |       <web-uri>webapp.war</web-uri>         
  |     </web>
  |   </module>
  | </application>
  | 

hopefully this will help get you past your problems.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3834697#3834697

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3834697


-------------------------------------------------------
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to