We deploy our enterprise application(exploded) on Weblogic using WLST:
oldApplication = find(name=d['name'], type='AppDeployment')
if oldApplication:
print "Undeploying application " + d['name'] + " on server " + target
progress = undeploy(appName=d['name'], targets=target)
progress.printStatus()
if cmd == "deploy" or cmd == "redeploy":
print "Deploying application " + d['name'] + " on server " + target
progress = deploy(appName=d['name'], path=d['path'], targets=target)
progress.printStatus()
After re-deployment we have to restart not only managed server but also admin server.
Otherwise managed server will start previous version of application not new one.
What can be wrong with redeployment?
UPDATE:
Admin server
Staging Mode: nostage
Managed Server
Staging Mode: stage
UPDATE:
I changed deployment mode to nostage:
progress = deploy(appName=d['name'], path=d['path'], targets=target, stageMode="nostage")
We deploy our application only on one server, not on claster.
And managed server has access to directory where prepared application is located.
So nostage mode should help.