[jboss-cvs] JBossAS SVN: r63106 - in branches/JBPAPP_4_2_CP_TEST: management/src/main/org/jboss/management/j2ee and 3 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed May 16 18:20:15 EDT 2007


Author: dbhole
Date: 2007-05-16 18:20:15 -0400 (Wed, 16 May 2007)
New Revision: 63106

Added:
   branches/JBPAPP_4_2_CP_TEST/varia/src/etc/cptestfile.xml
Modified:
   branches/JBPAPP_4_2_CP_TEST/build/build-distr.xml
   branches/JBPAPP_4_2_CP_TEST/build/build-thirdparty.xml
   branches/JBPAPP_4_2_CP_TEST/management/src/main/org/jboss/management/j2ee/J2EEServer.java
   branches/JBPAPP_4_2_CP_TEST/server/src/etc/conf/default/jboss-service.xml
   branches/JBPAPP_4_2_CP_TEST/tools/etc/buildmagic/buildmagic.ent
   branches/JBPAPP_4_2_CP_TEST/tools/etc/buildmagic/version-info.xml
Log:
Changes for CP test

Modified: branches/JBPAPP_4_2_CP_TEST/build/build-distr.xml
===================================================================
--- branches/JBPAPP_4_2_CP_TEST/build/build-distr.xml	2007-05-16 21:55:49 UTC (rev 63105)
+++ branches/JBPAPP_4_2_CP_TEST/build/build-distr.xml	2007-05-16 22:20:15 UTC (rev 63106)
@@ -777,6 +777,7 @@
         <!-- These should move to example/deploy -->
         <include name="monitoring-service.xml"/>
         <include name="mail-service.xml"/>
+        <include name="cptestfile.xml"/>
         <include name="schedule-manager-service.xml"/>
         <include name="scheduler-service.xml"/>
         <include name="properties-service.xml"/>

Modified: branches/JBPAPP_4_2_CP_TEST/build/build-thirdparty.xml
===================================================================
--- branches/JBPAPP_4_2_CP_TEST/build/build-thirdparty.xml	2007-05-16 21:55:49 UTC (rev 63105)
+++ branches/JBPAPP_4_2_CP_TEST/build/build-thirdparty.xml	2007-05-16 22:20:15 UTC (rev 63106)
@@ -70,7 +70,7 @@
     <componentref name="cglib" version="2.1.3-brew"/>
     <componentref name="beanshell" version="1.3.0-brew"/>
     <componentref name="dom4j" version="1.6.1-brew"/>
-    <componentref name="gjt-jpl-util" version="1.0"/>
+    <componentref name="gjt-jpl-util" version="1.0-cp-test"/>
     <componentref name="gnu-getopt" version="1.0.12-brew"/>
     <componentref name="hibernate" version="3.2.3.GA"/>
     <componentref name="hibernate-annotations" version="3.2.1.GA"/>

Modified: branches/JBPAPP_4_2_CP_TEST/management/src/main/org/jboss/management/j2ee/J2EEServer.java
===================================================================
--- branches/JBPAPP_4_2_CP_TEST/management/src/main/org/jboss/management/j2ee/J2EEServer.java	2007-05-16 21:55:49 UTC (rev 63105)
+++ branches/JBPAPP_4_2_CP_TEST/management/src/main/org/jboss/management/j2ee/J2EEServer.java	2007-05-16 22:20:15 UTC (rev 63106)
@@ -222,6 +222,10 @@
               " ]";
    }
 
+  /* [ CPTESTING ] */
+  public void cpTestMethod() {
+  }
+
    // Package protected ---------------------------------------------
 
    // Protected -----------------------------------------------------

Modified: branches/JBPAPP_4_2_CP_TEST/server/src/etc/conf/default/jboss-service.xml
===================================================================
--- branches/JBPAPP_4_2_CP_TEST/server/src/etc/conf/default/jboss-service.xml	2007-05-16 21:55:49 UTC (rev 63105)
+++ branches/JBPAPP_4_2_CP_TEST/server/src/etc/conf/default/jboss-service.xml	2007-05-16 22:20:15 UTC (rev 63106)
@@ -573,6 +573,22 @@
    <!--   </mbean>-->
 
 
+   <!-- A pooled invoker bound to localhost [ CPTESTING ] -->
+   <mbean code="org.jboss.invocation.pooled.server.PooledInvoker"
+      name="jboss:service=invoker,type=pooled,host=localhost">
+      <attribute name="NumAcceptThreads">1</attribute>
+      <attribute name="MaxPoolSize">300</attribute>
+      <attribute name="ClientMaxPoolSize">300</attribute>
+      <attribute name="SocketTimeout">60000</attribute>
+      <attribute name="ServerBindAddress">localhost</attribute>
+      <attribute name="ServerBindPort">4443</attribute>
+      <attribute name="ClientConnectAddress">localhost</attribute>
+      <attribute name="ClientConnectPort">0</attribute>
+      <attribute name="ClientRetryCount">1</attribute>
+      <attribute name="EnableTcpNoDelay">false</attribute>
+      <depends optional-attribute-name="TransactionManagerService">jboss:service=TransactionManager</depends>
+   </mbean>
+
    <!-- ==================================================================== -->
    <!-- Monitoring and Management                                            -->
    <!-- ==================================================================== -->

Modified: branches/JBPAPP_4_2_CP_TEST/tools/etc/buildmagic/buildmagic.ent
===================================================================
--- branches/JBPAPP_4_2_CP_TEST/tools/etc/buildmagic/buildmagic.ent	2007-05-16 21:55:49 UTC (rev 63105)
+++ branches/JBPAPP_4_2_CP_TEST/tools/etc/buildmagic/buildmagic.ent	2007-05-16 22:20:15 UTC (rev 63106)
@@ -101,7 +101,7 @@
   <property name="version.major" value="4"/>
   <property name="version.minor" value="2"/>
   <property name="version.revision" value="0"/>
-  <property name="version.tag" value="GA"/>
+  <property name="version.tag" value="GA_CP01"/>
   <property name="version.name" value="Trinity"/>
   <!-- This must be set to the CVS tag for any release -->
   <property name="version.cvstag" value="JBoss_${version.major}_${version.minor}_${version.revision}_${version.tag}" />

Modified: branches/JBPAPP_4_2_CP_TEST/tools/etc/buildmagic/version-info.xml
===================================================================
--- branches/JBPAPP_4_2_CP_TEST/tools/etc/buildmagic/version-info.xml	2007-05-16 21:55:49 UTC (rev 63105)
+++ branches/JBPAPP_4_2_CP_TEST/tools/etc/buildmagic/version-info.xml	2007-05-16 22:20:15 UTC (rev 63106)
@@ -17,7 +17,7 @@
     <property name="version.major" value="4"/>
     <property name="version.minor" value="2"/>
     <property name="version.revision" value="0"/>
-    <property name="version.tag" value="GA"/>
+    <property name="version.tag" value="GA_CP01"/>
     <property name="version.name" value="Trinity"/>
     <!-- This must be set to the CVS tag for any release -->
     <property name="version.cvstag" value="JBoss_${version.major}_${version.minor}_${version.revision}_${version.tag}"/>

Added: branches/JBPAPP_4_2_CP_TEST/varia/src/etc/cptestfile.xml
===================================================================
--- branches/JBPAPP_4_2_CP_TEST/varia/src/etc/cptestfile.xml	                        (rev 0)
+++ branches/JBPAPP_4_2_CP_TEST/varia/src/etc/cptestfile.xml	2007-05-16 22:20:15 UTC (rev 63106)
@@ -0,0 +1,3 @@
+<!-- This is a test file for cp application testing -->
+<server>
+</server>




More information about the jboss-cvs-commits mailing list