Wednesday, September 21, 2016
Undeploy SOA Composite via WLST
The steps to undeploy the SOA composite using WLST:
export
ANT_HOME=/opt/fmw/Middleware/modules/org.apache.ant_1.7.1
/opt/fmw/Middleware/Oracle_SOA1/common/bin
./wlst.sh
connect('weblogic','demo1234','localhost:7001')
sca_undeployComposite("http://oiamsoaguru:8001","SOAWorkflowApp",
"1.0","weblogic","demo1234")
For your environment make the following changes in above commands:
- ANT path
- WLST path
- Weblogic user's password
- Weblogic host
- Weblogic port
- SOA server url
- Composite Name
Subscribe to:
Posts (Atom)
-
import java.util.Date; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.Stateme...
-
wget https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.5.0.tar.gz <Check latest version and replace everywhere> tar -xvf libress...
-
The following posts covers all aspects of developing and deploying a scheduled task in OIM and creating a scheduled job. The post will...