Reputation: 18336
I need to script an EAR deployment to Weblogic 9.2. Extra requirements I have though are:
As far as I can tell, when I use deploy(), the name is got assigned by me (good!), but application starts right away (bad! other services are not ready yet!).
Can anyone point me to a correct way of doing that?
Upvotes: 1
Views: 2328
Reputation: 570285
I think that what you're looking for is distributeApplication
, not deploy
(also see Administration Mode for Isolating Production Applications).
For the application name, why don't you set it in the deployment descriptor?
Upvotes: 1