You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Chester Chen <ch...@webwarecorp.com> on 2002/04/03 22:37:11 UTC

How to undeploy an service ?

Another silly question: 
 
How do I undeploy an published/deployed service ?
 
 
Chester
 

RE: How to undeploy an service ?

Posted by Chris Haddad <ch...@cobia.net>.
 
Create an xml file named undeploy.wsdd that contains an undeployment and
service tag.
 
For example:
--- undeploy.wsdd start --
<undeployment
    xmlns="http://xml.apache.org/axis/wsdd/">
 
  <service name="${serviceName}"/>
</undeployment>
--- undeploy.wsdd end - 
 
Where ${serviceName} = name of your service..
 
Then execute java org.apache.axis.client.AdminClient undeploy.wsdd
 
 
That be all. Have fun,
 
/Chris
 
-----Original Message-----
From: Chester Chen [mailto:chester.chen@webwarecorp.com] 
Sent: Wednesday, April 03, 2002 3:37 PM
To: 'axis-user@xml.apache.org'
Subject: How to undeploy an service ?
 
Another silly question: 
 
How do I undeploy an published/deployed service ?
 
 
Chester