From 70958ae9f37108d3b48ad5bfa2ae27f750dfafff Mon Sep 17 00:00:00 2001 From: Conor MacNeill Date: Mon, 16 Oct 2000 12:43:16 +0000 Subject: [PATCH] Add documentation for wlrun and wlstop tasks git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268095 13f79535-47bb-0310-9956-ffa450edef68 --- docs/ejb.html | 113 +++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 107 insertions(+), 6 deletions(-) diff --git a/docs/ejb.html b/docs/ejb.html index ef38f8aa5..39235ff89 100644 --- a/docs/ejb.html +++ b/docs/ejb.html @@ -36,10 +36,10 @@ to support additional EJB Servers.

EJB Tasks

- - - - + + + +
TaskApplication Servers
ddcreatorWeblogic 4.5
ejbcWeblogic 4.5
wlrunWeblogic 4.5
wlstopWeblogic 4.5
ddcreatorWeblogic 4.5.1
ejbcWeblogic 4.5.1
wlrunWeblogic 4.5.1 and 5.1
wlstopWeblogic 4.5.1 and 5.1
ejbjarWeblogic 5.1
@@ -151,12 +151,113 @@ or are out of date, the ejbc tool is run to generate new versions.

wlrun

Description:

-

This is an experimental task and is not currently documented. +

The wlrun task is used to start a weblogic server. The task runs +a weblogic instance in a separate Java Virtual Machine. A number of parameters +are used to control the operation of the weblogic instance. Note that the task, +and hence ant, will not complete until the weblogic instance is stopped. + +

Parameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
homeThe location of the weblogic home that is to be used. This is the location + where weblogic is installed.Yes
classpathThe classpath to be used with the Java Virtual Machine that runs the Weblogic + Server. This is typically set to the Weblogic boot classpath.Yes
wlclasspathThe weblogic classpath used by the Weblogic Server.No
propertiesThe name of the server's properties file within the weblogic home directory + used to control the weblogic instance.Yes
nameThe name of the weblogic server within the weblogic home which is to be run. + This defaults to "myserver"No
policyThe name of the security policy file within the weblogic home directory that + is to be used. If not specified, the default policy file weblogic.policy + is used.No
jvmargsAdditional argument string passed to the Java Virtual Machine used to run the + Weblogic instance.No
argsAdditional argument string passed to the Weblogic instance.No
+

wlstop

Description:

-

This is an experimental task and is not currently documented. +

The wlstop task is used to stop a weblogic instance which is currently running. +To shut down an instance you must supply both a username and a password. These will be stored +in the clear in the build script used to stop the instance. For security reasons, this task is +therefore only appropriate in a development environment. + +

Parameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
classpathThe classpath to be used with the Java Virtual Machine that runs the Weblogic + Shutdown comment.Yes
userThe username of the account which will be used to shutdown the serverYes
passwordThe password for the account specified in the user parameter.Yes
urlThe URL which describes the port to which the server is listening for T3 connections. + For example, t3://localhost:7001Yes
delayThe delay in seconds after which the server will stop. This defaults to an + immediate shutdown.No
+

ejbjar