Juan, What does your undeploy.wsdd look like? The ones in the samples directory that I've looked at are like
<undeployment name="test" xmlns="http://xml.apache.org/axis/wsdd/"> <service name="MyService"/> </undeployment> I use this ant script: <target name="undeploy"> <java classname="org.apache.axis.client.AdminClient"> <arg value="resources/undeploy.wsdd" /> <classpath> <path refid="axis-classpath" /> <pathelement path="../lib/axis" /> </classpath> </java> </target> Perhaps there are additional parts to <undeployment> but I don't know them. On Wednesday 10 August 2005 12:38, Juan Cervera wrote: > Thanks for the suggestion Thad, > > I've tried to undeploy and deploy the Axis WAR and even bouncing WAS, > but still have the same problem, so it does not look that the problem is > produced by "hung" processes in my case. The only way I have managed to > undeploy services is by manually modifying the server-config.wsdd. > > Does anyone have more suggestions on this problem?
