The jar files in the EAR are not added to classpath by default. For JBoss-4.2.x you can
create a lib folder at the root of the EAR and add the jars to that lib folder so that
they get added by default to the classpath. However, i don't remember much about
whether this is supported in JBoss-4.0.5GA. The alternate approach is to add all those
jars as a java module in the application.xml:
| <module>
| <java>sle.jar</java>
| </module>
|
|
| <module>
| <java>sle-client.jar</java>
| </module>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4195911#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...