ehatcher 02/03/24 06:51:04
Modified: src/main/org/apache/tools/ant/taskdefs defaults.properties
docs/manual/OptionalTasks ejb.html
Added: docs/manual/OptionalTasks ejbdeploy.html
Log:
EJB hot deploy tool, contributed by Christopher A. Longo - [EMAIL PROTECTED]
(sorry for the multi-step commit - darn lock files!)
Revision Changes Path
1.115 +1 -0
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/defaults.properties
Index: defaults.properties
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/defaults.properties,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- defaults.properties 21 Mar 2002 10:44:19 -0000 1.114
+++ defaults.properties 24 Mar 2002 14:51:03 -0000 1.115
@@ -151,6 +151,7 @@
soslabel=org.apache.tools.ant.taskdefs.optional.sos.SOSLabel
echoproperties=org.apache.tools.ant.taskdefs.optional.EchoProperties
splash=org.apache.tools.ant.taskdefs.optional.splash.SplashTask
+ejbdeploy=org.apache.tools.ant.taskdefs.optional.ejb.EjbDeploy
# deprecated ant tasks (kept for back compatibility)
starteam=org.apache.tools.ant.taskdefs.optional.scm.AntStarTeamCheckOut
1.19 +2 -1 jakarta-ant/docs/manual/OptionalTasks/ejb.html
Index: ejb.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/ejb.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ejb.html 18 Mar 2002 02:44:23 -0000 1.18
+++ ejb.html 24 Mar 2002 14:51:03 -0000 1.19
@@ -22,7 +22,7 @@
</ul>
<p>Version @VERSION@<br>
-$Id: ejb.html,v 1.18 2002/03/18 02:44:23 conor Exp $
+$Id: ejb.html,v 1.19 2002/03/24 14:51:03 ehatcher Exp $
</p>
<hr>
<h2>Table of Contents</h2>
@@ -62,6 +62,7 @@
<tr><td><a href="BorlandGenerateClient.html">blgenclient</a></td><td
colspan="2">Borland Application Server 4.5</td></tr>
<tr><td><a href="#ddcreator">ddcreator</a></td><td colspan="2">Weblogic
4.5.1</td></tr>
<tr><td><a href="#ejbc">ejbc</a></td><td colspan="2">Weblogic
4.5.1</td></tr>
+ <tr><td><a href="ejbdeploy.html">ejbdeploy</a></td><td colspan="2">EJB hot
server deployment</td>
<tr><td><a href="#iplanet-ejbc">iplanet-ejbc</a></td><td
colspan="2">iPlanet Application Server 6.0</td></tr>
<tr><td rowspan="7"><a href="#ejbjar">ejbjar</a></td><td colspan="2"
align="center"><b>Nested Elements</b></td></tr>
<tr><td><a href="BorlandEJBTasks.html">borland</a></td><td>Borland
Application Server 4.5</td></tr>
1.1 jakarta-ant/docs/manual/OptionalTasks/ejbdeploy.html
Index: ejbdeploy.html
===================================================================
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<title>EjbDeploy Task</title>
</head>
<body>
<h2><a name="ejbdeploy">ejbdeploy</a></h2>
<h3><b>Description:</b></h3>
<p>The <code>ejbdeploy</code> task is used to run a "hot" deployment tool for
vendor-specific J2EE server. The task runs the tool in a separate JVM. The
task requires nested elements which define the attributes of the
vendor-specific deployment tool being executed.
</p>
<h3>Parameters:</h3>
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<td valign="top"><b>Attribute</b></td>
<td valign="top"><b>Description</b></td>
<td valign="top"><b>Required</b></td>
</tr>
<tr>
<td valign="top">action</td>
<td valign="top">This is the action to be performed. For most cases this
will be "deploy". Some tools support additional actions, such as
"delete", "list",
"undeploy", "update"...</td>
<td>Yes</td>
</tr>
<tr>
<td valign="top">classpath</td>
<td valign="top">The classpath to be passed to the JVM running the tool.
The classpath may also be supplied as a nested element.</td>
<td>No</td>
</tr>
<tr>
<td valign="top">serverUrl</td>
<td valign="top">The URL for the server where the component will be
deployed.</td>
<td>No</td>
</tr>
<tr>
<td valign="top">username</td>
<td valign="top">The user with privileges to deploy applications to the
server.</td>
<td>No</td>
</tr>
<tr>
<td valign="top">password</td>
<td valign="top">The password of the user with privileges to deploy
applications to the server.</td>
<td>Yes</td>
</tr>
<tr>
<td valign="top">source</td>
<td valign="top">A fully qualified path/filename of the component to be
deployed.
This may be a EAR, JAR, WAR, or any other type that is supported by the
server.
</td>
<td>No</td>
</tr>
</table>
<h3>Nested Elements</h3>
<p>The ejbdeploy task supports a nested <classpath>
element to set the classpath.</p>
<h3>Vendor-specific nested elements</h3>
<p>Also supported are nested vendor-specific elements.</p>
<h3>WebLogic element</h3>
<p>
The WebLogic element contains additional parameters to run the
<code>weblogic.deploy</code> deployment tool.
<p>Valid actions for the tool are <code>deploy</code>, <code>undeploy</code>,
<code>list</code>, <code>update</code>, and <code>delete</code>.
<p>If the action is <code>deploy</code> or <code>update</code>,
the <code>application</code> and <code>source</code> attributes must be set.
If the action is <code>undeploy</code> or <code>delete</code>,
the <code>application</code> attribute must be set.
<p>
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<td valign="top"><b>Attribute</b></td>
<td valign="top"><b>Description</b></td>
<td valign="top"><b>Required</b></td>
</tr>
<tr>
<td valign="top">application</td>
<td valign="top">This is the name of the application being deployed</td>
<td>Yes</td>
</tr>
<tr>
<td valign="top">component</td>
<td valign="top">This is the component string for deployment targets.
It is in the form
<code><component>:<target1>,<target2>...</code>
Where component is the archive name (minus the .jar, .ear, .war
extension). Targets are the servers where the components will be
deployed</td>
<td>Yes</td>
</tr>
<tr>
<td valign="top">debug</td>
<td valign="top">If set to true, additional information will be
printed during the deployment process.</td>
<td>No</td>
</tr>
</table>
<h3>Examples</h3>
<p>This example shows the use of ejbdeploy to deploy a component to a
WebLogic server:</p>
<pre>
<ejbdeploy action="deploy"
serverUrl="t3://myserver:7001"
classpath="${classpath}"
username="${user.name}"
password="${user.password}"
source="${lib.dir}/ejb_myApp.ear">
<weblogic application="myapp"
component="ejb_foobar:myserver,productionserver"
debug="true"/>
</ejbdeploy>
</pre>
<p>This example shows ejbdeploy being used to delete a component from a
WebLogic server:</p>
<pre>
<ejbdeploy action="delete"
serverUrl="t3://myserver:7001"
classpath="${classpath}"
username="${user.name}"
password="${user.password}">
<weblogic application="myapp"/>
</ejbdeploy>
</pre>
<hr>
<p align="center">Copyright © 2002 Apache Software Foundation. All
rights Reserved.</p>
</body>
</html>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>