From 6c585ec5663ac8561c0605e9bba92f461d8ab060 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Fri, 2 Nov 2007 14:10:55 +0100 Subject: [PATCH] Fix example DEPLOYPATH to use .../WEB-INF/lib instead of .../classes ... since the Makefile will copy the remote-ws-server.jar file and not the individual classes. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0738f05..83373bf 100644 --- a/Makefile +++ b/Makefile @@ -33,13 +33,13 @@ ADMINPASS = ## Location of the server class files # # The host and path specifying where the web service application -# infrastructure classes should be deployed. Note, that scp is used for +# infrastructure jar files should be deployed. Note, that scp is used for # this, so the DEPLOYLOCATION variable should hold a valid scp location. # # Leave DEPLOYHOST empty to deploy files locally. DEPLOYHOST = -DEPLOYPATH = /path/to/tomcatX.X/webapps/axis/WEB-INF/classes/ +DEPLOYPATH = /path/to/tomcatX.X/webapps/axis/WEB-INF/lib/ ################################################################################ # Build section -- 2.11.4.GIT