WebSphere 7 RAD scripts
We need to prepare part of our EAR for deployment, we usually do this by loading it into RAD, right-clicking on the EJB and choosing the Prepare to Deploy option. Then we export the EAR.
Is there a scripting interface for the IBM RAD 7 application, or is it preparing from the command line so we don't have to go through these steps manually?
a source to share
You can use the ejbdeploy command to generate your deployment code. It is associated with both RAD and WAS.
See "Generating EJB Deployment Code from the Command Line" in the WAS Information Center .
a source to share
You can use the RAD task in the ejbDeploy
Ant bundle described here: http://publib.boulder.ibm.com/infocenter/radhelp/v7r0m0/topic/com.ibm.etools.ant.tasks.doc/topics/tantejbd.html
This performs the same functionality as Prepare for Deployment, but only in headless (not GUI) mode.
(For RAD 8.0 and later, use the task prepForDeploy
on the supplied EAR: http://publib.boulder.ibm.com/infocenter/radhelp/v8/topic/com.ibm.ant.tasks.doc/topics/tpreparefordeploy.html )
a source to share