Hello
I have built a web app using Tomcat 6 as a container. I was using a couple of Jars of Tomcat's and referring to them from my ant build in Eclipse.
I've written another ant build to deploy my app into a .war and then together with an application.xml deployment descriptor into an .ear for deploying to WAS 7. In order to support this, I've pulled the jars into my war so I know they'll be available to the app which worked through Tomcat.
I know that I need to put something into the application.xml file to cause the class loader to use the jars I've pulled in and not WAS's but for the life of me I can't even find a decent resource to read up on what full range of options exist in an application.xml file let alone exactly what I need to type to put this (PARENT_LAST?) text in.
1) Can anyone point me to a full online document listing all the things that I can put into my application.xml to control my .ear
2) Can anyone post a listing which modifies the below xml such that when the xml file is included in a .ear it can deploy to WAS such that the WAS container uses the jars in the enclosed war rather than the ones in the WAS setup.
I will be eternally grateful.
<?xml version="1.0" encoding="UTF-8"?>
<application id="Client">
<display-name>Client</display-name>
<description>Web application supporting the configuration and management of server components</description>
<module id="Client">
<web>
<web-uri>Client.war</web-uri>
<context-root>client</context-root>
</web>
</module>
</application>