You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2011/09/01 13:33:30 UTC

svn commit: r1164019 - /openejb/trunk/openejb3/assembly/openejb-tomcat/openejb-tomcat-webapp/src/main/resources/META-INF/org.apache.openejb.tomcat/service-jar.xml

Author: rmannibucau
Date: Thu Sep  1 11:33:30 2011
New Revision: 1164019

URL: http://svn.apache.org/viewvc?rev=1164019&view=rev
Log:
updating tomcat service-jar.xml (datasource factory constructor args update)

Modified:
    openejb/trunk/openejb3/assembly/openejb-tomcat/openejb-tomcat-webapp/src/main/resources/META-INF/org.apache.openejb.tomcat/service-jar.xml

Modified: openejb/trunk/openejb3/assembly/openejb-tomcat/openejb-tomcat-webapp/src/main/resources/META-INF/org.apache.openejb.tomcat/service-jar.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/assembly/openejb-tomcat/openejb-tomcat-webapp/src/main/resources/META-INF/org.apache.openejb.tomcat/service-jar.xml?rev=1164019&r1=1164018&r2=1164019&view=diff
==============================================================================
--- openejb/trunk/openejb3/assembly/openejb-tomcat/openejb-tomcat-webapp/src/main/resources/META-INF/org.apache.openejb.tomcat/service-jar.xml (original)
+++ openejb/trunk/openejb3/assembly/openejb-tomcat/openejb-tomcat-webapp/src/main/resources/META-INF/org.apache.openejb.tomcat/service-jar.xml Thu Sep  1 11:33:30 2011
@@ -136,14 +136,14 @@
     #
     # With strict pooling, requests will have to wait for instances to
     # become available. The pool size will never grow beyond the the
-    # set PoolSize value.  The maximum amount of time a request should
+    # set MaxSize value.  The maximum amount of time a request should
     # wait is specified via the AccessTimeout setting.
     #
     # Without strict pooling, the container will create temporary
     # instances to meet demand. The instances will last for just one
     # method invocation and then are removed.
     #
-    # Setting StrictPooling to false and PoolSize to 0 will result in
+    # Setting StrictPooling to false and MaxSize to 0 will result in
     # no pooling. Instead instances will be created on demand and live
     # for exactly one method call before being removed.
 
@@ -329,7 +329,6 @@
 
   </ServiceProvider>
 
-
   <!--
   # ==========================================================
   # Default Singleton SessionBean Container
@@ -396,6 +395,7 @@
     # Specifies the time to wait between invocations. This
     # value is measured in minutes. A value of 5 would
     # result in a time-out of 5 minutes between invocations.
+    # A value of zero would mean no timeout.
 
     TimeOut 20
 
@@ -529,7 +529,7 @@
           service="Resource"
           types="javax.sql.DataSource, DataSource"
           factory-name="create"
-          constructor="JtaManaged"
+          constructor="JtaManaged, JdbcDriver"
           class-name="org.apache.openejb.resource.jdbc.DataSourceFactory">
 
     # Determines wether or not this data source should be JTA managed
@@ -725,7 +725,7 @@
           service="Resource"
           types="javax.sql.DataSource, DataSource"
           factory-name="create"
-          constructor="JtaManaged"
+          constructor="JtaManaged, JdbcDriver"
           class-name="org.apache.openejb.resource.jdbc.DataSourceFactory">
 
     JtaManaged = false
@@ -963,7 +963,7 @@
           types="javax.jms.Queue, Queue"
           constructor="destination"
           class-name="org.apache.activemq.command.ActiveMQQueue">
-
+    destination
   </ServiceProvider>
 
   <ServiceProvider
@@ -972,7 +972,7 @@
           types="javax.jms.Topic, Topic"
           constructor="destination"
           class-name="org.apache.activemq.command.ActiveMQTopic">
-
+    destination
   </ServiceProvider>
 
   <!--