blob: 6946ee42f4d38dca6c994c19e600e1bdbbda86ac [file] [log] [blame]
############################################################################
# Generic script applicable on any Operating Environments (Unix, Windows)
# ScriptName : wls_undeploy.py
# Properties : weblogic.properties test.properties
# Author : Kevin Yuan
############################################################################
#===========================================================================
# Connect to wls server
#===========================================================================
connect('%%WL_USR%%','%%WL_PWD%%','t3://%%WL_HOST%%:%%WL_PORT%%')
#===========================================================================
# Undeploy applications from wls server
#===========================================================================
edit()
startEdit()
stopApplication('%%appName%%')
undeploy(appName='%%appName%%')
save()
activate()
exit()