I have an application.war folder (not as file) which contains jaxen-1.1.1.jar (in the WEB-INF/lib) directory. Unfortunately the JAR is not loaded, as I get in the application logs:
Exception while dispatching incoming RPC call
com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract java.util.HashMap client.Service.doLogin(java.util.Map)' threw an unexpected exception:
java.lang.NoClassDefFoundError: org/jaxen/JaxenException
This is weird, since other JAR's (i.e. spring) seem to load correctly (which is used to parse the configuration successfully before the error occurs). Please note that none of the libraries are in the JBoss /lib folder.
Question: is there a reason why certain JAR's are not loaded? How can I check which ones are?
Many thanks!