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.
Task | Application Servers |
ddcreator | Weblogic 4.5 |
ejbc | Weblogic 4.5 |
wlrun | Weblogic 4.5 |
wlstop | Weblogic 4.5 |
ddcreator | Weblogic 4.5.1 |
ejbc | Weblogic 4.5.1 |
wlrun | Weblogic 4.5.1 and 5.1 |
wlstop | Weblogic 4.5.1 and 5.1 |
ejbjar | Weblogic 5.1 |
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.
+
+
Attribute | +Description | +Required | +
home | +The location of the weblogic home that is to be used. This is the location + where weblogic is installed. | +Yes | +
classpath | +The classpath to be used with the Java Virtual Machine that runs the Weblogic + Server. This is typically set to the Weblogic boot classpath. | +Yes | +
wlclasspath | +The weblogic classpath used by the Weblogic Server. | +No | +
properties | +The name of the server's properties file within the weblogic home directory + used to control the weblogic instance. | +Yes | +
name | +The name of the weblogic server within the weblogic home which is to be run. + This defaults to "myserver" | +No | +
policy | +The 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 | +
jvmargs | +Additional argument string passed to the Java Virtual Machine used to run the + Weblogic instance. | +No | +
args | +Additional argument string passed to the Weblogic instance. | +No | +
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.
+
+
Attribute | +Description | +Required | +
classpath | +The classpath to be used with the Java Virtual Machine that runs the Weblogic + Shutdown comment. | +Yes | +
user | +The username of the account which will be used to shutdown the server | +Yes | +
password | +The password for the account specified in the user parameter. | +Yes | +
url | +The URL which describes the port to which the server is listening for T3 connections. + For example, t3://localhost:7001 | +Yes | +
delay | +The delay in seconds after which the server will stop. This defaults to an + immediate shutdown. | +No | +