INSTALL ------- Requirements ------------ A. J2SE 1.4+ (http://java.sun.com) B. Tomcat 5.0.18+ (http://jakarta.apache.org) C. JWSDP 1.3 (http://java.sun.com) Installing the webservice ------------------------- 1. Set the "jwsdp.root" property to the correct JWSDP 1.3 directory 2. Use ant "deploy" to generate a deployable WAR file. 3. Deploy the WAR (build/doc/execmgr.war) file using the Tomcat manager client, or drop it in the webapps directory of Tomcat. 4. Restart Tomcat. 5. Browse to http://localhost:8080/execmgr/execmgr to see if it works! Installing the webclient ------------------------ To facilitate easy testing this service has an integrated webclient. To install this, please first follow steps 1-5 of "Installing the webservice". 6. Use ant "client" to generate and compile the client classes. 7. Use ant "deploy" to generate a deployable WAR file. 8. Deploy the WAR (build/doc/execmgr.war) file using the Tomcat manager client, or drop it in the webapps directory of Tomcat (note you will have to remove the old execmgr directory as well). 9. Restart Tomcat. 10. Browse to http://localhost:8080/execmgr NOTE: Do not try to shorten the steps for installing the webclient, if you do your installation will probably be broken! --END