Heya,
I've deployed a simple service using the command
java org.apache.axis.client.AdminClient -llocal:///AdminService
deploy.wsdd
and it runs fine if i use the command
java com.bp.webService.ReportsDescriptionServiceClient -llocal://
as a client which invokes the service, however, if i navigate to the
location
then it is claimed that the service cannot be found
(ReportsDescription is the service name as specified in the
deploy.wsdd.
After undeploying, I tried deploying the service again using the
command
java org.apache.axis.client.AdminClient
-lhttp://localhost:8080/axis/services/AdminService deploy.wsdd
this time i could locate the wsdl file without problem (using the above
url) but when i tried to run the service using the command
java com.bp.webService.ReportsDescriptionServiceClient
-lhttp://localhost:8080/axis/servlet/AxisServlet
I received a java.lang.reflect.InvocationTargetException!
Any help/guidence would be awesome-
and if anyones got time- whats the effect of using -llocal:// as opposed to
the full servlet address?