diff --git a/docs/manual/OptionalTasks/ejb.html b/docs/manual/OptionalTasks/ejb.html index a2ec806c8..c3c0ee7cf 100644 --- a/docs/manual/OptionalTasks/ejb.html +++ b/docs/manual/OptionalTasks/ejb.html @@ -13,6 +13,7 @@ Over time we expect further optional tasks to support additional EJB Servers.

@@ -61,11 +63,12 @@ In general these tasks are specific to the particular vendor's EJB Server.

ddcreatorWeblogic 4.5.1 ejbcWeblogic 4.5.1 iplanet-ejbciPlanet Application Server 6.0 - ejbjarNested Elements + ejbjarNested Elements borlandBorland Application Server 4.5 jBossjBoss iPlanetiPlanet Application Server 6.0 weblogicWeblogic 5.1 & 6.0 + websphereIBM WebSphere 4.0 jonasJOnAS 2.4 wlrunWeblogic 4.5.1, 5.1 & 6.0 wlstopWeblogic 4.5.1, 5.1 & 6.0 @@ -77,7 +80,7 @@ In general these tasks are specific to the particular vendor's EJB Server.

Description:

ddcreator will compile a set of Weblogic text-based deployment descriptors into a serialized EJB deployment descriptor. The selection of which of the text-based descriptors are to be compiled -is based on the standard Ant include and exclude selection mechanisms. +is based on the standard Ant include and exclude selection mechanisms.

Parameters:

@@ -99,14 +102,14 @@ is based on the standard Ant include and exclude selection mechanisms. classpath - This is the classpath to use to run the underlying weblogic ddcreator tool. + This is the classpath to use to run the underlying weblogic ddcreator tool. This must include the weblogic.ejb.utils.DDCreator class No

Examples

-
<ddcreator descriptors="${dd.dir}" 
-           dest="${gen.classes}" 
+
<ddcreator descriptors="${dd.dir}"
+           dest="${gen.classes}"
            classpath="${descriptorbuild.classpath}">
   <include name="*.txt" />
 </ddcreator>
@@ -115,19 +118,19 @@ is based on the standard Ant include and exclude selection mechanisms.
 

ejbc

Description:

-

The ejbc task will run Weblogic's ejbc tool. This tool will take a serialised deployment descriptor, -examine the various EJB interfaces and bean classes and then generate the required support classes +

The ejbc task will run Weblogic's ejbc tool. This tool will take a serialised deployment descriptor, +examine the various EJB interfaces and bean classes and then generate the required support classes necessary to deploy the bean in a Weblogic EJB container. This will include the RMI stubs and skeletons as well as the classes which implement the bean's home and remote interfaces.

-The ant task which runs this tool is able to compile several beans in a single operation. The beans to be -compiled are selected by including their serialised deployment descriptors. The standard ant +The ant task which runs this tool is able to compile several beans in a single operation. The beans to be +compiled are selected by including their serialised deployment descriptors. The standard ant include and exclude constructs can be used to select the deployment descriptors to be included.

-Each descriptor is examined to determine whether the generated classes are out of date and need to be -regenerated. The deployment descriptor is de-serialized to discover the home, remote and -implementation classes. The corresponding source files are determined and checked to see their +Each descriptor is examined to determine whether the generated classes are out of date and need to be +regenerated. The deployment descriptor is de-serialized to discover the home, remote and +implementation classes. The corresponding source files are determined and checked to see their modification times. These times and the modification time of the serialised descriptor itself are compared with the modification time of the generated classes. If the generated classes are not present or are out of date, the ejbc tool is run to generate new versions.

@@ -169,9 +172,9 @@ or are out of date, the ejbc tool is run to generate new versions.

Examples

<ejbc descriptors="${gen.classes}"
-           src="${src.dir}" 
+           src="${src.dir}"
            dest="${gen.classes}"
-           manifest="${build.manifest}" 
+           manifest="${build.manifest}"
            classpath="${descriptorbuild.classpath}">
   <include name="*.ser" />
 </ejbc>
@@ -199,7 +202,7 @@ are out of date will the iAS ejbc utility be called to generate new stubs
 and skeletons.

Parameters:

- + @@ -284,12 +287,12 @@ Examples
<iplanet-ejbc ejbdescriptor="ejb-jar.xml"
               iasdescriptor="ias-ejb-jar.xml"
-              dest="${build.classesdir}" 
+              dest="${build.classesdir}"
               classpath="${ias.ejbc.cpath}" />
 
 <iplanet-ejbc ejbdescriptor="ejb-jar.xml"
               iasdescriptor="ias-ejb-jar.xml"
-              dest="${build.classesdir}" 
+              dest="${build.classesdir}"
               keepgenerated="yes"
               debug="yes"
               iashome="${ias.home}" >
@@ -305,9 +308,9 @@ Examples
 

wlrun

Description:

-

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, +

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:

@@ -328,10 +331,10 @@ and hence ant, will not complete until the weblogic instance is stopped.

- - @@ -342,9 +345,9 @@ and hence ant, will not complete until the weblogic instance is stopped.

- @@ -364,14 +367,14 @@ and hence ant, will not complete until the weblogic instance is stopped.

- - @@ -391,7 +394,7 @@ and hence ant, will not complete until the weblogic instance is stopped.

- @@ -413,7 +416,7 @@ and hence ant, will not complete until the weblogic instance is stopped.

Nested Elements

-

The wlrun task supports nested <classpath> and <wlclasspath> +

The wlrun task supports nested <classpath> and <wlclasspath> elements to set the repsective classpaths.

Examples

@@ -424,7 +427,7 @@ elements to set the repsective classpaths.

<wlrun taskname="myserver" classpath="${weblogic.boot.classpath}" wlclasspath="${weblogic.classes}:${code.jars}" - name="myserver" + name="myserver" home="${weblogic.home}" properties="myserver/myserver.properties"/> @@ -435,8 +438,8 @@ Weblogic 6.0

     <wlrun taskname="petstore"
            classpath="${weblogic.classes}"
-           name="petstoreServer" 
-           domain="petstore" 
+           name="petstoreServer"
+           domain="petstore"
            home="${weblogic.home}"
            password="petstorePassword"
            beahome="${bea.home}"/>
@@ -446,13 +449,13 @@ Weblogic 6.0

wlstop

Description:

-

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 +

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.

-

This task works for most version of Weblogic, including 6.0. You need to +

This task works for most version of Weblogic, including 6.0. You need to specify the BEA Home to have this task work correctly under 6.0

Parameters:

@@ -469,7 +472,7 @@ specify the BEA Home to have this task work correctly under 6.0

- @@ -485,7 +488,7 @@ specify the BEA Home to have this task work correctly under 6.0

- @@ -518,9 +521,9 @@ specify the BEA Home to have this task work correctly under 6.0

ejbjar

Description:

-

This task is designed to support building of EJB1.1 jar files. Support is -currently provided for 'vanilla' EJB1.1 jar files - i.e. those containing only -the user generated class files and the standard deployment descriptor. Nested +

This task is designed to support building of EJB1.1 jar files. Support is +currently provided for 'vanilla' EJB1.1 jar files - i.e. those containing only +the user generated class files and the standard deployment descriptor. Nested elements provide support for vendor specific deployment tools. These currently include:

    @@ -528,60 +531,66 @@ include:

  • iPlanet Application Server 6.0
  • Jboss 2.1 and above
  • Weblogic 5.1/6.0 session/entity beans using the weblogic.ejbc tool
  • +
  • IBM WebSphere 4.0
  • TOPLink for WebLogic 2.5.1-enabled entity beans
  • JOnAS 2.4 Open Source EJB server
-

The task works as a directory scanning task, and performs an action for each -deployment descriptor found. As such the includes and excludes should be set -to ensure that all desired EJB1.1 descriptors are found, but no application -server descriptors are found. For each descriptor found, ejbjar will parse the -deployment descriptor to determine the necessary class files which implement the -bean. These files are assembled along with the deployment descriptors into a -well formed EJB jar file. Any support files which need to be included in the -generated jar can be added with the <support> nested element. For each +

The task works as a directory scanning task, and performs an action for each +deployment descriptor found. As such the includes and excludes should be set +to ensure that all desired EJB1.1 descriptors are found, but no application +server descriptors are found. For each descriptor found, ejbjar will parse the +deployment descriptor to determine the necessary class files which implement the +bean. These files are assembled along with the deployment descriptors into a +well formed EJB jar file. Any support files which need to be included in the +generated jar can be added with the <support> nested element. For each class included in the jar, ejbjar will scan for any super classes or super interfaces. These will be added to the generated jar.

-

If no nested vendor-specific deployment elements are present, the task will -simply generate a generic EJB jar. Such jars are typically used as the input to -vendor-specific deployment tools. For each nested deployment element, a vendor -specific deployment tool is run to generate a jar file ready for deployment in +

If no nested vendor-specific deployment elements are present, the task will +simply generate a generic EJB jar. Such jars are typically used as the input to +vendor-specific deployment tools. For each nested deployment element, a vendor +specific deployment tool is run to generate a jar file ready for deployment in that vendor's EJB container.

-

The jar files are only built if they are out of date. Each deployment tool -element will examine its target jar file and determine if it is out of date with -respect to the class files and deployment descriptors that make up the bean. If -any of these files are newer than the jar file the jar will be rebuilt otherwise +

The jar files are only built if they are out of date. Each deployment tool +element will examine its target jar file and determine if it is out of date with +respect to the class files and deployment descriptors that make up the bean. If +any of these files are newer than the jar file the jar will be rebuilt otherwise a message is logged that the jar file is up to date.

+

The task uses the jakarta-bcel framework, to extract all dependent classes. This +means, that beside the classes, that are mentioned in the deployment descriptor, also +all classes, that these depend on, are automatically included in the jar file.

+ +

Naming Convention

-Ejbjar handles the processing of multiple beans, and it uses a set of naming -conventions to determine the name of the generated EJB jars. The naming convention -that is used is controlled by the "naming" attribute. It supports the +Ejbjar handles the processing of multiple beans, and it uses a set of naming +conventions to determine the name of the generated EJB jars. The naming convention +that is used is controlled by the "naming" attribute. It supports the following values
  • descriptor
  • -

    This is the default naming scheme. The name of the generated bean is derived from the -name of the deployment descriptor. For an Account bean, for example, the deployment +

    This is the default naming scheme. The name of the generated bean is derived from the +name of the deployment descriptor. For an Account bean, for example, the deployment descriptor would be named Account-ejb-jar.xml. Vendor specific descriptors are located using the same naming convention. The weblogic bean, for example, would be named Account-weblogic-ejb-jar.xml. Under this arrangment, the deployment descriptors can be separated from the code implementing the beans, which can be useful whe the same bean code -is deployed in separate beans. +is deployed in separate beans.

    -

    This scheme is useful when you are using one bean per EJB jar and where you may be -deploying the same bean classes in different beans, with different deployment characteristics. +

    This scheme is useful when you are using one bean per EJB jar and where you may be +deploying the same bean classes in different beans, with different deployment characteristics.

  • ejb-name
  • This naming scheme uses the <ejb-name> element from the deployment descriptor to determine the bean name. In this situation, the descriptors normally use the generic descriptor names, such as ejb-jar.xml along with any associated vendor specific descriptor -names. For example, If the value of the <ejb-name> were to be given in the deployment descriptor +names. For example, If the value of the <ejb-name> were to be given in the deployment descriptor as follows:

     <ejb-jar>
    @@ -591,35 +600,35 @@ as follows:
                 <home>org.apache.ant.ejbsample.SampleHome</home>
     
    -then the name of the generated bean would be Sample.jar +then the name of the generated bean would be Sample.jar

    This scheme is useful where you want to use the standard deployment descriptor names, which may be more compatible with other EJB tools. This scheme must have one bean per jar.

  • directory
  • -In this mode, the name of the generated bean jar is derived from the directory +In this mode, the name of the generated bean jar is derived from the directory containing the deployment descriptors. Again the deployment descriptors typically use -the standard filenames. For example, if the path to the deployment descriptor is -/home/user/dev/appserver/dd/sample, then the generated +the standard filenames. For example, if the path to the deployment descriptor is +/home/user/dev/appserver/dd/sample, then the generated bean will be named sample.jar

    This scheme is also useful when you want to use standard style descriptor names. It is often -most useful when the descriptors are located in the same directory as the bean source code, -although that is not mandatory. This scheme can handle multiple beans per jar. +most useful when the descriptors are located in the same directory as the bean source code, +although that is not mandatory. This scheme can handle multiple beans per jar.

  • basejarname
  • The final scheme supported by the <ejbjar> task is used when you want to specify the generated -bean jar name directly. In this case the name of the generated jar is specified by the +bean jar name directly. In this case the name of the generated jar is specified by the "basejarname" attribute. Since all generated beans will have the same name, this task should be only used when each descriptor is in its own directory.

    -This scheme is most appropriate when you are using multiple beans per jar and only process a single +This scheme is most appropriate when you are using multiple beans per jar and only process a single deployment descriptor. You typically want to specify the name of the jar and not derive it from the beans in the jar.

    @@ -634,27 +643,29 @@ beans in the jar.
- - - @@ -667,33 +678,33 @@ beans in the jar. - - - @@ -701,8 +712,8 @@ beans in the jar. @@ -718,26 +729,26 @@ beans in the jar.

Nested Elements

-

In addition to the vendor specific nested elements, the ejbjar task provides +

In addition to the vendor specific nested elements, the ejbjar task provides three nested elements.

Classpath

-

The <classpath> nested element allows the classpath -to be set. It is useful when setting the classpath from a reference path. In all +

The <classpath> nested element allows the classpath +to be set. It is useful when setting the classpath from a reference path. In all other respects the behaviour is the same as the classpath attribute.

dtd

-

The <dtd> element is used to specify the local location of DTDs to be -used when parsing the EJB deployment descriptor. Using a local DTD is much -faster than loading the DTD across the net. If you are running ejbjar behind a -firewall you may not even be able to access the remote DTD. The supported -vendor-specific nested elements know the location of the required DTDs within -the vendor class hierarchy and, in general, this means <dtd> elements are -not required. It does mean, however, that the vendor's class hierarchy must be -available in the classpath when Ant is started. If your want to run Ant without -requiring the vendor classes in the classpath, you would need to use a +

The <dtd> element is used to specify the local location of DTDs to be +used when parsing the EJB deployment descriptor. Using a local DTD is much +faster than loading the DTD across the net. If you are running ejbjar behind a +firewall you may not even be able to access the remote DTD. The supported +vendor-specific nested elements know the location of the required DTDs within +the vendor class hierarchy and, in general, this means <dtd> elements are +not required. It does mean, however, that the vendor's class hierarchy must be +available in the classpath when Ant is started. If your want to run Ant without +requiring the vendor classes in the classpath, you would need to use a <dtd> element.

Attribute
homeThe location of the weblogic home that is to be used. This is the location + The location of the weblogic home that is to be used. This is the location where weblogic is installed. YesYes. Note this is the absolute location, not relative to + Yes. Note this is the absolute location, not relative to BEA home.
classpathThe classpath to be used with the Java Virtual Machine that runs the Weblogic - Server. Prior to Weblogic 6.0, this is typically set to the Weblogic - boot classpath. Under Weblogic 6.0 this should include all the + The classpath to be used with the Java Virtual Machine that runs the Weblogic + Server. Prior to Weblogic 6.0, this is typically set to the Weblogic + boot classpath. Under Weblogic 6.0 this should include all the weblogic jars Yes Yes
nameThe name of the weblogic server within the weblogic home which is to be run. + The name of the weblogic server within the weblogic home which is to be run. This defaults to "myserver" No No
policyThe name of the security policy file within the weblogic home directory that + 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
pkPasswordThe private key password so the server can decrypt the SSL + The private key password so the server can decrypt the SSL private key file N/A No
classpathThe classpath to be used with the Java Virtual Machine that runs the Weblogic + The classpath to be used with the Java Virtual Machine that runs the Weblogic Shutdown comment. Yes
urlThe URL which describes the port to which the server is listening for T3 connections. + The URL which describes the port to which the server is listening for T3 connections. For example, t3://localhost:7001 Yes
descriptordirThe base directory under which to scan for EJB - deployment descriptors. If this attribute is not - specified, then the deployment descriptors must be - located in the directory specified by the 'srcdir' + The base directory under which to scan for EJB + deployment descriptors. If this attribute is not + specified, then the deployment descriptors must be + located in the directory specified by the 'srcdir' attribute. No
srcdirThe base directory containing the .class files that - make up the bean. Note that this can be the same as - the descriptordir if all files are in the same directory + The base directory containing the .class files that + make up the bean. Included are the home- remote- pk- + and implementation- classes and all classes, that these + depend on. Note that this can be the same as the + descriptordir if all files are in the same directory tree. Yes
destdirThe base directory into which generated jar files are - deposited. Jar files are deposited in directories + The base directory into which generated jar files are + deposited. Jar files are deposited in directories corresponding to their location within the descriptordir - namespace. Note that this attribute is only used if the + namespace. Note that this attribute is only used if the task is generating generic jars (i.e. no vendor-specific deployment elements have been specified). Yes
basejarnameThe base name that is used for the generated jar files. - If this attribute is specified, the generic jar file name - will use this value as the prefix (followed by the value - specified in the 'genericjarsuffix' attribute) and the + The base name that is used for the generated jar files. + If this attribute is specified, the generic jar file name + will use this value as the prefix (followed by the value + specified in the 'genericjarsuffix' attribute) and the resultant ejb jar file (followed by any suffix specified in the nested element). No
basenameterminatorString value used to substring out a string from the name + String value used to substring out a string from the name of each deployment descriptor found, which is then used to - locate related deployment descriptors (e.g. the WebLogic - descriptors). For example, a basename of '.' and a + locate related deployment descriptors (e.g. the WebLogic + descriptors). For example, a basename of '.' and a deployment descriptor called 'FooBean.ejb-jar.xml' would result in a basename of 'FooBean' which would then be used - to find FooBean.weblogic-ejb-jar.xml and - FooBean.weblogic-cmp-rdbms-jar.xml, as well as to create - the filenames of the jar files as FooBean-generic.jar and - FooBean-wl.jar. This attribute is not used if the + to find FooBean.weblogic-ejb-jar.xml and + FooBean.weblogic-cmp-rdbms-jar.xml, as well as to create + the filenames of the jar files as FooBean-generic.jar and + FooBean-wl.jar. This attribute is not used if the 'basejarname' attribute is specified. No, defaults to '-'.
genericjarsuffixString value appended to the basename of the deployment - descriptor to create the filename of the generic EJB jar + String value appended to the basename of the deployment + descriptor to create the filename of the generic EJB jar file. No, defaults to '-generic.jar'.
classpath This classpath is used when resolving classes which are to be added to the jar. Typically nested deployment - tool elements will also support a classpath which - will be combined with this classpath when resolving + tool elements will also support a classpath which + will be combined with this classpath when resolving classes No.
@@ -761,19 +772,19 @@ requiring the vendor classes in the classpath, you would need to use a

support

-

The <support> nested element is used to supply additional classes -(files) to be included in the generated jars. The <support> element is a -FileSet, so it can either reference a fileset declared elsewhere or it can be -defined in-place with the appropriate <include> and <exclude> nested -elements. The files in the support fileset are added into the generated EJB jar -in the same relative location as their location within the support fileset. Note -that when ejbjar generates more than one jar file, the support files are added +

The <support> nested element is used to supply additional classes +(files) to be included in the generated jars. The <support> element is a +FileSet, so it can either reference a fileset declared elsewhere or it can be +defined in-place with the appropriate <include> and <exclude> nested +elements. The files in the support fileset are added into the generated EJB jar +in the same relative location as their location within the support fileset. Note +that when ejbjar generates more than one jar file, the support files are added to each one.

Vendor-specific deployment elements

-Each vendor-specific nested element controls the generation of a deployable jar -specific to that vendor's EJB container. The parameters for each supported +Each vendor-specific nested element controls the generation of a deployable jar +specific to that vendor's EJB container. The parameters for each supported deployment element are detailed here. @@ -826,25 +837,25 @@ not require compilation of additional stubs and skeletons.

Weblogic element

-

The weblogic element is used to control the weblogic.ejbc compiler for -generating weblogic EJB jars. Prior to Ant 1.3, the method of locating CMP -descriptors was to use the ejbjar naming convention. So if your ejb-jar was +

The weblogic element is used to control the weblogic.ejbc compiler for +generating weblogic EJB jars. Prior to Ant 1.3, the method of locating CMP +descriptors was to use the ejbjar naming convention. So if your ejb-jar was called, Customer-ejb-jar.xml, your weblogic descriptor was called Customer- weblogic-ejb-jar.xml and your CMP descriptor had to be Customer-weblogic-cmp- -rdbms-jar.xml. In addition, the <type-storage> element in the weblogic +rdbms-jar.xml. In addition, the <type-storage> element in the weblogic descriptor had to be set to the standard name META-INF/weblogic-cmp-rdbms- -jar.xml, as that is where the CMP descriptor was mapped to in the generated +jar.xml, as that is where the CMP descriptor was mapped to in the generated jar.

-

There are a few problems with this scheme. It does not allow for more than -one CMP descriptor to be defined in a jar and it is not compatible with the +

There are a few problems with this scheme. It does not allow for more than +one CMP descriptor to be defined in a jar and it is not compatible with the deployment descriptors generated by some tools.

-

In Ant 1.3, ejbjar parses the weblogic deployment descriptor to discover the -CMP descriptors, which are then included automatically. This behaviour is -controlled by the newCMP attribute. Note that if you move to the new method of -determining CMP descriptors, you will need to update your weblogic deployment -descriptor's <type-storage> element. In the above example, you would +

In Ant 1.3, ejbjar parses the weblogic deployment descriptor to discover the +CMP descriptors, which are then included automatically. This behaviour is +controlled by the newCMP attribute. Note that if you move to the new method of +determining CMP descriptors, you will need to update your weblogic deployment +descriptor's <type-storage> element. In the above example, you would define this as META-INF/Customer-weblogic-cmp-rdbms-jar.xml.

@@ -856,50 +867,50 @@ define this as META-INF/Customer-weblogic-cmp-rdbms-jar.xml.

- - - - @@ -907,29 +918,29 @@ define this as META-INF/Customer-weblogic-cmp-rdbms-jar.xml.

- @@ -943,9 +954,9 @@ define this as META-INF/Customer-weblogic-cmp-rdbms-jar.xml.

- - - @@ -990,7 +1001,7 @@ define this as META-INF/Customer-weblogic-cmp-rdbms-jar.xml.

destdir The base directory into which the generated weblogic ready - jar files are deposited. Jar files are deposited in - directories corresponding to their location within the + jar files are deposited. Jar files are deposited in + directories corresponding to their location within the descriptordir namespace. Yes
genericjarsuffixA generic jar is generated as an intermediate step in - build the weblogic deployment jar. The suffix used to - generate the generic jar file is not particularly - important unless it is desired to keep the generic + A generic jar is generated as an intermediate step in + build the weblogic deployment jar. The suffix used to + generate the generic jar file is not particularly + important unless it is desired to keep the generic jar file. It should not, however, be the same as the suffix setting. No, defaults to '-generic.jar'.
suffixString value appended to the basename of the deployment - descriptor to create the filename of the WebLogic EJB + String value appended to the basename of the deployment + descriptor to create the filename of the WebLogic EJB jar file. No, defaults to '.jar'.
classpathThe classpath to be used when running the weblogic ejbc + The classpath to be used when running the weblogic ejbc tool. Note that this tool typically requires the classes - that make up the bean to be available on the classpath. - Currently, however, this will cause the ejbc tool to be + that make up the bean to be available on the classpath. + Currently, however, this will cause the ejbc tool to be run in a separate VM No
wlclasspath Weblogic 6.0 will give a warning if the home and remote interfaces - of a bean are on the system classpath used to run weblogic.ejbc. + of a bean are on the system classpath used to run weblogic.ejbc. In that case, the standard weblogic classes should be set with - this attribute (or equivalent nested element) and the + this attribute (or equivalent nested element) and the home and remote interfaces located with the standard classpath attribute No
keepgenericThis controls whether the generic file used as input to + This controls whether the generic file used as input to ejbc is retained. No, defaults to false
compiler This allows for the selection of a different compiler to be used for the compilation of the generated Java - files. This could be set, for example, to Jikes to + files. This could be set, for example, to Jikes to compile with the Jikes compiler. If this is not set and the build.compiler property is set to jikes, the Jikes compiler will be used. If this - is not desired, the value "default" + is not desired, the value "default" may be given to use the default compiler No
rebuildThis flag controls whether weblogic.ejbc is always + This flag controls whether weblogic.ejbc is always invoked to build the jar file. In certain circumstances, such as when only a bean class has been changed, the jar can be generated by merely replacing the changed classes and not rerunning ejbc. Setting this to false will reduce - the time to run ejbjar. + the time to run ejbjar. No, defaults to true.
keepgenerated Controls whether weblogic will keep the generated Java - files used to build the class files added to the + files used to build the class files added to the jar. This can be useful when debugging No, defaults to false.
weblogicdtdDeprecated. Defines the location of the ejb-jar DTD in + Deprecated. Defines the location of the ejb-jar DTD in the weblogic class hierarchy. This should not be necessary if you - have weblogic in your classpath. If you do not, you should use a + have weblogic in your classpath. If you do not, you should use a nested <dtd> element, described above. If you do choose to use an attribute, you should use the ejbdtd attribute in preference to this one, anyway. @@ -954,19 +965,19 @@ define this as META-INF/Customer-weblogic-cmp-rdbms-jar.xml.

wldtdDeprecated. Defines the location of the weblogic-ejb-jar + Deprecated. Defines the location of the weblogic-ejb-jar DTD which covers the Weblogic specific deployment descriptors. - This should not be necessary if you have weblogic in your - classpath. If you do not, you should use a nested <dtd> + This should not be necessary if you have weblogic in your + classpath. If you do not, you should use a nested <dtd> element, described above. No.
ejbdtdDeprecated. Defines the location of the ejb-jar DTD in + Deprecated. Defines the location of the ejb-jar DTD in the weblogic class hierarchy. This should not be necessary if you - have weblogic in your classpath. If you do not, you should use a + have weblogic in your classpath. If you do not, you should use a nested <dtd> element, described above. No.
-

The weblogic nested element itself supports two nested elements <classpath> and +

The weblogic nested element itself supports two nested elements <classpath> and <wlclasspath> which are used to set the respective classpaths. These nested elements are useful when setting up class paths using reference Ids.

@@ -1008,7 +1019,7 @@ additional attributes

toplinkdescriptor - This specifies the name of the TOPLink deployment descriptor file contained in the + This specifies the name of the TOPLink deployment descriptor file contained in the 'descriptordir' directory. Yes @@ -1023,10 +1034,10 @@ additional attributes

Examples

-

This example shows ejbjar being used to generate deployment jars using a -Weblogic EJB container. This example requires the naming standard to be used for -the deployment descriptors. Using this format will create a ejb jar file for -each variation of '*-ejb-jar.xml' that is found in the deployment descriptor +

This example shows ejbjar being used to generate deployment jars using a +Weblogic EJB container. This example requires the naming standard to be used for +the deployment descriptors. Using this format will create a ejb jar file for +each variation of '*-ejb-jar.xml' that is found in the deployment descriptor directory.

@@ -1039,13 +1050,13 @@ directory.

</ejbjar>
-

If weblogic is not in the Ant classpath, the following example -shows how to specify the location of the weblogic DTDs. This +

If weblogic is not in the Ant classpath, the following example +shows how to specify the location of the weblogic DTDs. This example also show the use of a nested classpath element.

- +
     <ejbjar descriptordir="${src.dir}" srcdir="${build.classes}">
-       <weblogic destdir="${deployment.webshop.dir}" 
+       <weblogic destdir="${deployment.webshop.dir}"
                  keepgeneric="true"
                  args="-g -keepgenerated ${ejbc.compiler}"
                  suffix=".jar"
@@ -1054,18 +1065,18 @@ example also show the use of a nested classpath element.

<pathelement path="${descriptorbuild.classpath}"/> </classpath> </weblogic> - <include name="**/*-ejb-jar.xml"/> + <include name="**/*-ejb-jar.xml"/> <exclude name="**/*-weblogic-ejb-jar.xml"/> <dtd publicId="-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN" location="${weblogic.home}/classes/weblogic/ejb/deployment/xml/ejb-jar.dtd"/> <dtd publicId="-//BEA Systems, Inc.//DTD WebLogic 5.1.0 EJB//EN" location="${weblogic.home}/classes/weblogic/ejb/deployment/xml/weblogic-ejb-jar.dtd"/> </ejbjar> -
+
-

This example shows ejbjar being used to generate a single deployment jar -using a Weblogic EJB container. This example does not require the deployment +

This example shows ejbjar being used to generate a single deployment jar +using a Weblogic EJB container. This example does not require the deployment descriptors to use the naming standard. This will create only one ejb jar file - 'TheEJBJar.jar'.

@@ -1081,7 +1092,7 @@ descriptors to use the naming standard. This will create only one ejb jar file - </ejbjar>
-

This example shows ejbjar being used to generate deployment jars for a TOPLink-enabled entity bean using a +

This example shows ejbjar being used to generate deployment jars for a TOPLink-enabled entity bean using a Weblogic EJB container. This example does not require the deployment descriptors to use the naming standard. This will create only one TOPLink-enabled ejb jar file - 'Address.jar'.

@@ -1101,17 +1112,17 @@ This will create only one TOPLink-enabled ejb jar file - 'Address.jar'.

</ejbjar>
-

This final example shows how you would set-up ejbjar under Weblogic 6.0. It also shows the use of the +

This final example shows how you would set-up ejbjar under Weblogic 6.0. It also shows the use of the <support> element to add support files

     <ejbjar descriptordir="${dd.dir}" srcdir="${build.classes.server}">
-       <include name="**/*-ejb-jar.xml"/> 
+       <include name="**/*-ejb-jar.xml"/>
        <exclude name="**/*-weblogic-ejb-jar.xml"/>
        <support dir="${build.classes.server}">
-            <include name="**/*.class"/> 
+            <include name="**/*.class"/>
        </support>
-       <weblogic destdir="${deployment.dir}" 
+       <weblogic destdir="${deployment.dir}"
                  keepgeneric="true"
                  suffix=".jar"
                  rebuild="false">
@@ -1126,6 +1137,140 @@ This will create only one TOPLink-enabled ejb jar file - 'Address.jar'.

+

WebSphere element

+ +

The websphere element searches for the websphere specific deployment descriptors and +adds them to the final ejb jar file. Websphere has two specific desriptors for session +beans: +

+and another two for container managed entity beans: + +In terms of WebSphere, the generation of container code and stubs is called deployment. +This step can be performed by the websphere element as part of the jar generation process. If the +switch ejbdeploy is on, the ejbdeploy tool from the websphere toolset is called for +every ejb-jar. Unfortunately, this step only works, if you use the ibm jdk. Otherwise, the rmic +(called by ejbdeploy) throws a ClassFormatError. Be sure to switch ejbdeploy off, if run ant with +sun jdk. +

+ +

+For the websphere element to work, you have to provide a complete classpath, that contains all +classes, that are required to reflect the bean classes. For ejbdeploy to work, you must also provide +the classpath of the ejbdeploy tool (look at the examples below). +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
destdirThe base directory into which the generated weblogic ready + jar files are deposited. Jar files are deposited in + directories corresponding to their location within the + descriptordir namespace. Yes
ejbdeployDecides wether ejbdeploy is called. When you set this to true, + be sure, to run ant with the ibm jdk.No, defaults to true
suffixString value appended to the basename of the deployment + descriptor to create the filename of the WebLogic EJB + jar file.No, defaults to '.jar'.
keepgenericThis controls whether the generic file used as input to + ejbdeploy is retained.No, defaults to false
alwaysrebuildThis controls whether ejbdeploy is called although no changes + have occured.No, defaults to false
tempdirA directory, where ejbdeploy will write temporary filesNo, defaults to '_ejbdeploy_temp'.
dbName
dbSchema
These options are passed to ejbdeploy.No
dbVendorThis option is passed to ejbdeploy. Valid options are for example: +
    +
  • SQL92
  • SQL99
  • DB2UDBWIN_V71
  • +
  • DB2UDBOS390_V6
  • DB2UDBAS400_V4R5
  • ORACLE_V8
  • +
  • INFORMIX_V92
  • SYBASE_V1192
  • MYSQL_V323
  • +
+ This is also used to determine the name of the Map.mapxmi and + Schema.dbxmi files, for example Account-DB2UDBWIN_V71-Map.mapxmi + and Account-DB2UDBWIN_V71-Schema.dbxmi. +
No
codegen
quiet
novalidate
noinform
trace
+ use35MappingRules
These options are all passed to ejbdeploy. All options + except 'quiet' default to false.No
rmicOptionsThis option is passed to ejbdeploy and will be passed + on to rmic.No
+ +

This example shows ejbjar being used to generate deployment jars for all deployment descriptors +in the descriptor dir:

+ +
+     <ejbjar srcdir="${build.class}" descriptordir="etc/ejb">
+      <include name="*-ejb-jar.xml"/>
+      <websphere dbvendor="DB2UDBOS390_V6"
+                 ejbdeploy="true"
+                 oldCMP="false"
+		 tempdir="/tmp"
+                 destdir="${dist.server}">
+        <wasclasspath>
+          <pathelement location="${was4.home}/deploytool/itp/plugins/org.eclipse.core.boot/boot.jar"/>
+          <pathelement location="${was4.home}/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime/batch.jar"/>
+          <pathelement location="${was4.home}/lib/xerces.jar"/>
+          <pathelement location="${was4.home}/lib/ivjejb35.jar"/>
+          <pathelement location="${was4.home}/lib/j2ee.jar"/>
+          <pathelement location="${was4.home}/lib/vaprt.jar"/>
+        </wasclasspath>
+      <classpath>
+        <path refid="build.classpath"/>
+      </classpath>
+      </websphere>
+      <dtd publicId="-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN"
+           location="${lib}/dtd/ejb-jar_1_1.dtd"/>
+    </ejbjar>
+
+

iPlanet Application Server (iAS) element

The <iplanet> nested element is used to build iAS-specific stubs and @@ -1134,7 +1279,7 @@ Application Server 6.0. The build process will always determine if the EJB stubs/skeletons and the EJB-JAR file are up to date, and it will do the minimum amount of work required.

Like the WebLogic element, a naming convention for the EJB descriptors -is most commonly used to specify the name for the completed JAR file. +is most commonly used to specify the name for the completed JAR file. For example, if the EJB descriptor ejb/Account-ejb-jar.xml is found in the descriptor directory, the iplanet element will search for an iAS-specific EJB descriptor file named ejb/Account-ias-ejb-jar.xml (if it isn't found, @@ -1171,7 +1316,7 @@ their location within the "descriptordir" namespace. classpath -The classpath used when generating EJB stubs and skeletons. +The classpath used when generating EJB stubs and skeletons. If omitted, the classpath specified in the "ejbjar" parent task will be used. If specified, the classpath elements will be prepended to the classpath specified in the parent "ejbjar" task. Note that nested "classpath" @@ -1215,7 +1360,7 @@ path. suffix -String value appended to the JAR filename when creating each JAR. +String value appended to the JAR filename when creating each JAR. If omitted, it defaults to ".jar". No @@ -1226,7 +1371,7 @@ If omitted, it defaults to ".jar". nested elements.

Examples

-This example demonstrates the typical use of the <iplanet> nested element. +This example demonstrates the typical use of the <iplanet> nested element. It will name each EJB-JAR using the "basename" prepended to each standard EJB descriptor. For example, if the descriptor named "Account-ejb-jar.xml" is processed, the EJB-JAR will be named "Account.jar" @@ -1243,7 +1388,7 @@ as some of the other optional attributes. descriptordir="${src}" > <iplanet destdir="${assemble.ejbjar}" iashome="${ias.home}" - debug="yes" + debug="yes" keepgenerated="yes" > <classpath> <pathelement path="." /> @@ -1265,13 +1410,13 @@ JAR files don't overwrite each other. <include name="**/*-ejb-jar.xml"/> <exclude name="**/*ias-*.xml"/> </ejbjar> -This example demonstrates the use of the dtd nested element. If the local -copies of the DTDs are included in the classpath, they will be automatically -referenced without the nested elements. In iAS 6.0 SP2, these local DTDs are -found in the [iAS-install-directory]/APPS directory. In iAS 6.0 SP3, these -local DTDs are found in the [iAS-install-directory]/dtd directory. +This example demonstrates the use of the dtd nested element. If the local +copies of the DTDs are included in the classpath, they will be automatically +referenced without the nested elements. In iAS 6.0 SP2, these local DTDs are +found in the [iAS-install-directory]/APPS directory. In iAS 6.0 SP3, these +local DTDs are found in the [iAS-install-directory]/dtd directory.
    <ejbjar srcdir="${build.classesdir}"
-            descriptordir="${src}"> 
+            descriptordir="${src}">
             <iplanet destdir="${assemble.ejbjar}">
                      classpath="${ias.ejbc.cpath}" />
             <include name="**/*-ejb-jar.xml"/>
@@ -1285,25 +1430,25 @@ local DTDs are found in the [iAS-install-directory]/dtd directory.
 

JOnAS (Java Open Application Server) element

-

The <jonas> nested element is used to build JOnAS-specific stubs -and skeletons thanks to the GenIC specific tool, and construct a JAR file -which may be deployed to the JOnAS Application Server. The build process -will always determine if the EJB stubs/skeletons and the EJB-JAR file are +

The <jonas> nested element is used to build JOnAS-specific stubs +and skeletons thanks to the GenIC specific tool, and construct a JAR file +which may be deployed to the JOnAS Application Server. The build process +will always determine if the EJB stubs/skeletons and the EJB-JAR file are up to date, and it will do the minimum amount of work required.

Like the WebLogic element, a naming convention for the EJB descriptors is most commonly used to specify the name for the completed JAR file. For - example, if the EJB descriptor ejb/Account.xml (or ejb/Account-ejb-jar.xml ) + example, if the EJB descriptor ejb/Account.xml (or ejb/Account-ejb-jar.xml ) is found in the descriptor directory, the jonas element will search for a - JOnAS-specific EJB descriptor file named ejb/Account-jonas-ejb-jar.xml - (if it isn't found, the task will fail) and a JAR file named ejb/Account.jar - will be written in the destination directory. Note that when the EJB - descriptors are added to the JAR file, they are automatically renamed + JOnAS-specific EJB descriptor file named ejb/Account-jonas-ejb-jar.xml + (if it isn't found, the task will fail) and a JAR file named ejb/Account.jar + will be written in the destination directory. Note that when the EJB + descriptors are added to the JAR file, they are automatically renamed META-INF/ejb-jar.xml and META-INF/jonas-ejb-jar.xml.

- But if you prefer, you can use JOnAS convention naming and keep your - XML file name : ejb/Account.xml and ejb/jonas-Account.xml, a JAR file named - ejb/Account.jar will be written in the destination directory. - + But if you prefer, you can use JOnAS convention naming and keep your + XML file name : ejb/Account.xml and ejb/jonas-Account.xml, a JAR file named + ejb/Account.jar will be written in the destination directory. +

Of course, this naming behavior can be modified by specifying attributes in the ejbjar task (for example, basejarname, basenameterminator, and flatdestdir) @@ -1358,14 +1503,14 @@ If omitted, it defaults to a temporary directory.

No
- + classpath - The classpath used when generating EJB stubs and skeletons. - If omitted, the classpath specified in the "ejbjar" parent task will - be used. If specified, the classpath elements will be prepended to the - classpath specified in the parent "ejbjar" task (see also the ORB - attribute documentation below). Note that nested "classpath" elements + The classpath used when generating EJB stubs and skeletons. + If omitted, the classpath specified in the "ejbjar" parent task will + be used. If specified, the classpath elements will be prepended to the + classpath specified in the parent "ejbjar" task (see also the ORB + attribute documentation below). Note that nested "classpath" elements may also be used. No @@ -1384,8 +1529,8 @@ source files will be retained. If omitted, it defaults to "no". secpropag - Modify the RMI Skel. and Stub. to implement the - implicit propagation of the security context (note that + Modify the RMI Skel. and Stub. to implement the + implicit propagation of the security context (note that the transactionnal context is always provided). No, defaults to false. @@ -1484,7 +1629,7 @@ deployment descriptor directory. 

<ejbjar srcdir="${build.classes}" descriptordir="${descriptor.dir}" basejarname="TheEJBJar"> - <jonas destdir="${deploymentjars.dir}" + <jonas destdir="${deploymentjars.dir}" jonasroot="${jonas.root}" suffix=".jar" classpath="${descriptorbuild.classpath}" /> @@ -1494,7 +1639,7 @@ deployment descriptor directory. 


-

Copyright © 2001 Apache Software Foundation. All rights +

Copyright © 2001-2002 Apache Software Foundation. All rights Reserved.