I've bundled up axis in to a war file, no application jar files. I deploy the axis war file (and axis' native services come up).
Now, I want to deploy the the axis AdminService an application specific wsdd file (generated by axis during my build process).
What I get is the following error message from the AdminClient:
Processing file deploy.wsdd Exception:: java.lang.reflect.InvocationTargetException
My application jar files are in the same directory as the axis war file. Apparently thats not enough. How to I tell axis where to look for application classes?
Note that when I explode the axis war file, place my application jar files in the WEB-INF/lib directory and then start the webserver, every thing works; axis finds my application jars. But with axis as a war file, this is not possible.
The reason why I wish to not use an exploded axis war file is that there are actually more than one applicaiton and which ones will be deployed is not known until runtime, not a build time.
Richard
