1

I am currently using a script to deploy applications to weblogic and it works fine for war's on the AdminServicer

java -classpath $webLogicJarLocation weblogic.Deployer -username $username -password $password -name $OldAppName -undeploy

It may be this is not possible but I would Imagine it is. currently I keep getting No application named 'HelloBPELProject' exists for operation undeploy

I have tried setting the -targets flag as shown below but with no luck

java -classpath $webLogicJarLocation weblogic.Deployer -username $username-password $password -name HelloBPELProject -undeploy -targets soa_server1

Any help or advice would be greatly appreciated

4

1 回答 1

1

尝试运行以下命令:

java weblogic.Deployer -adminurl t3://localhost:7001 -username weblogic -password weblogic1 -listapps

查看您的应用程序是否已实际部署并且名称是否与您认为应该匹配的名称相匹配。输出应如下所示:

weblogic.Deployer invoked with options: -adminurl t3://localhost:7001 -username weblogic -listapps

HelloBPELProject

Number of Applications Found : 1

于 2013-07-16T15:43:32.437 回答