>>
I'm confused by the question. Classes are typically put in
tomcat4/webapps/axis/WEB-INF/classes.
<<
Is it possible to have the classes positioned elsewhere?
In Soap22 I could run...
http://localhost:8080/soap/servlet/rpcrouter deploy deploy.xml
The Soap22 deploy.xml file includes a line that points to the java class,
and that java class can be anywhere.Hence I could have my java classes
positioned under 'd:\wip\myproject'.
The equivalent deployment process in Axis is...
java org.apache.axis.client.AdminClient deploy.wsdd
This 'deploy.wsdd' file include a pointer to the related java class. Can
this java class be located anywhere??
What I'm trying to avoid is the need to copy java files from the development
area to a folder under 'webapps\' each time the code changes.
Understand?