Update of /cvsroot/xdoclet/xdoclet/modules/bea/src/xdoclet/modules/bea/wls/ejb/resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16755
Modified Files: weblogic600-ejb-jar.dtd weblogic700-ejb-jar.dtd weblogic810-ejb-jar.dtd Log Message: Latest versions from bea.com Index: weblogic600-ejb-jar.dtd =================================================================== RCS file: /cvsroot/xdoclet/xdoclet/modules/bea/src/xdoclet/modules/bea/wls/ejb/resources/weblogic600-ejb-jar.dtd,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** weblogic600-ejb-jar.dtd 4 Jul 2002 21:05:13 -0000 1.4 --- weblogic600-ejb-jar.dtd 14 Jan 2006 14:54:16 -0000 1.5 *************** *** 109,112 **** --- 109,119 ---- <!ELEMENT db-is-shared (#PCDATA)> + <!-- + This specifies a dispatch policy queue for a bean and only used for Entity + and Session beans (not for Message Driven beans). + + Used in: weblogic-enterprise-bean + --> + <!ELEMENT dispatch-policy (#PCDATA)> <!-- *************** *** 253,257 **** home-is-clusterable?, home-load-algorithm?, ! home-call-router-class-name?) > --- 260,265 ---- home-is-clusterable?, home-load-algorithm?, ! home-call-router-class-name?, ! use-serverside-stubs?) > *************** *** 348,351 **** --- 356,372 ---- <!ELEMENT idle-timeout-seconds (#PCDATA)> + <!-- + The stateful session beans that are passivated to the disk + will stay alive for this many seconds. After this interval, + the passivated beans will be removed from the disk. + + Used in: stateful-session-cache + + Since: WebLogic Server 6.1 sp5 + + Default value: 600 + --> + <!ELEMENT session-timeout-seconds (#PCDATA)> + <!-- *************** *** 666,669 **** --- 687,691 ---- <!ELEMENT allow-concurrent-calls (#PCDATA)> + <!ELEMENT allow-remove-during-transaction (#PCDATA)> *************** *** 873,876 **** --- 895,899 ---- home-load-algorithm?, home-call-router-class-name?, + use-serverside-stubs?, replication-type?) > *************** *** 886,889 **** --- 909,913 ---- max-beans-in-cache?, idle-timeout-seconds?, + session-timeout-seconds?, cache-type?) > *************** *** 901,905 **** persistent-store-dir?, stateful-session-clustering?, ! allow-concurrent-calls?) > --- 925,930 ---- persistent-store-dir?, stateful-session-clustering?, ! allow-concurrent-calls?, ! allow-remove-during-transaction?) > *************** *** 937,941 **** <!ELEMENT stateless-bean-is-clusterable (#PCDATA)> - <!-- The stateless-bean-load-algorithm specifies the algorithm to use --- 962,965 ---- *************** *** 986,989 **** --- 1010,1014 ---- home-load-algorithm?, home-call-router-class-name?, + use-serverside-stubs?, stateless-bean-is-clusterable?, stateless-bean-load-algorithm?, *************** *** 1079,1082 **** --- 1104,1117 ---- <!ELEMENT type-version (#PCDATA)> + <!-- + This tag enforces home to use server-side stubs in the context of server. + Used in: stateless-clustering, + stateful-session-clustering, + entity-clustering + + Default: false + --> + <!ELEMENT use-serverside-stubs (#PCDATA)> + <!-- The weblogic-ejb-jar is the root element of the weblogic component of the *************** *** 1106,1110 **** run-as-identity-principal?, jndi-name?, ! local-jndi-name?) > --- 1141,1146 ---- run-as-identity-principal?, jndi-name?, ! local-jndi-name?, ! dispatch-policy?) > Index: weblogic700-ejb-jar.dtd =================================================================== RCS file: /cvsroot/xdoclet/xdoclet/modules/bea/src/xdoclet/modules/bea/wls/ejb/resources/weblogic700-ejb-jar.dtd,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** weblogic700-ejb-jar.dtd 27 Jul 2004 13:54:07 -0000 1.2 --- weblogic700-ejb-jar.dtd 14 Jan 2006 14:54:16 -0000 1.3 *************** *** 317,320 **** --- 317,325 ---- concurrency strategies. + The idle-timeout-seconds element allows one to specify the length of + time that a bean may exist in the cache without being associated with + a transaction before it is eligible to be removed from the cache. + idle-timeout-seconds Since: WLS 7.0SP5 + Used in: entity-descriptor *************** *** 332,336 **** concurrency-strategy, cache-between-transactions?, ! estimated-bean-size?)> --- 337,342 ---- concurrency-strategy, cache-between-transactions?, ! estimated-bean-size?, ! idle-timeout-seconds?)> *************** *** 521,527 **** scrubbed are passivated. ! Used in: cache Default value: 600 --> <!ELEMENT idle-timeout-seconds (#PCDATA)> --- 527,538 ---- scrubbed are passivated. ! Used in: cache, entity-cache-ref Default value: 600 + Default value in entity-cache: 0 + Default value in entity-cache-ref: 0 + + in entity-cache-ref Since: WebLogic Server 7.0sp4 + used in entity-cache Since: WebLogic Server 7.0sp4 --> <!ELEMENT idle-timeout-seconds (#PCDATA)> Index: weblogic810-ejb-jar.dtd =================================================================== RCS file: /cvsroot/xdoclet/xdoclet/modules/bea/src/xdoclet/modules/bea/wls/ejb/resources/weblogic810-ejb-jar.dtd,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** weblogic810-ejb-jar.dtd 2 Oct 2004 23:24:44 -0000 1.2 --- weblogic810-ejb-jar.dtd 14 Jan 2006 14:54:16 -0000 1.3 *************** *** 231,234 **** --- 231,253 ---- <!ELEMENT dispatch-policy (#PCDATA)> + + <!-- + This specifies a rmi level timeout in seconds for remote clients that call the home + and remote methods of the ejb. The method call(s) timeout on the client side after the + specified number of seconds. The server will continue to process the request(s) and + may change the state. If this option is used, it will be the ejb developers + responsibility to handle the RequestTimeoutException on the client side and the state + on the serverside. + The rmi level timeout shall be set by the container only for non-transactional methods + (i.e, method with tx-attributes of Never or Not-Supported). The ejb developer should + take care that the parameter be only used for methods that are idempotent in nature. + + Used in: weblogic-enterprise-bean + + Since: WebLogic Server 8.1sp4 + --> + <!ELEMENT remote-client-timeout (#PCDATA)> + + <!-- The ejb-name element specifies an enterprise bean's name. This name is *************** *** 413,417 **** concurrency-strategy, cache-between-transactions?, ! estimated-bean-size?)> --- 432,437 ---- concurrency-strategy, cache-between-transactions?, ! estimated-bean-size?, ! idle-timeout-seconds?)> *************** *** 605,614 **** scrubbed are passivated. ! Used in: cache Default value: 600 --> <!ELEMENT idle-timeout-seconds (#PCDATA)> <!-- --- 625,652 ---- scrubbed are passivated. ! Used in: cache, entity-cache-ref Default value: 600 + Default value in entity-cache: 0 + Default value in entity-cache-ref: 0 + + in entity-cache-ref Since: WebLogic Server 8.1sp3 + used in entity-cache Since: WebLogic Server 8.1sp3 --> <!ELEMENT idle-timeout-seconds (#PCDATA)> + <!-- + The stateful session beans that are passivated to the disk + will stay alive for this many seconds. After this interval, + the passivated beans will be removed from the disk. + + Used in: cache + + Since: WebLogic Server 7.0 sp3 + + Default value: 600 + --> + <!ELEMENT session-timeout-seconds (#PCDATA)> + <!-- *************** *** 1384,1387 **** --- 1422,1426 ---- max-beans-in-cache?, idle-timeout-seconds?, + session-timeout-seconds?, cache-type?) > *************** *** 1636,1640 **** jndi-name?, local-jndi-name?, ! dispatch-policy?) > --- 1675,1680 ---- jndi-name?, local-jndi-name?, ! dispatch-policy?, ! remote-client-timeout?) > ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ xdoclet-devel mailing list xdoclet-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xdoclet-devel