[jboss-cvs] JBossAS SVN: r59447 - trunk/server/src/etc/conf/default.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jan 9 13:57:35 EST 2007


Author: tom.elrod at jboss.com
Date: 2007-01-09 13:57:33 -0500 (Tue, 09 Jan 2007)
New Revision: 59447

Modified:
   trunk/server/src/etc/conf/default/jboss-service.xml
   trunk/server/src/etc/conf/default/standardjboss.xml
Log:
Cleaning up name reference for default clustered invoker to use.  Had rmi when should be unified.

Modified: trunk/server/src/etc/conf/default/jboss-service.xml
===================================================================
--- trunk/server/src/etc/conf/default/jboss-service.xml	2007-01-09 18:51:49 UTC (rev 59446)
+++ trunk/server/src/etc/conf/default/jboss-service.xml	2007-01-09 18:57:33 UTC (rev 59447)
@@ -136,20 +136,20 @@
       | SubscriptionList
       |  - subscribe for the notifications to be stored in the table
 
-   <mbean code="org.jboss.monitor.services.ActiveAlarmTable" 
+   <mbean code="org.jboss.monitor.services.ActiveAlarmTable"
           name="jboss.monitor:service=ActiveAlarmTable">
       <attribute name="SubscriptionList">
          <subscription-list>
             <mbean name="jboss.monitor:*">
                <notification type="jboss.alarm"/>
-               <notification type="JBOSS_MONITOR_NOTIFICATION"/>               
+               <notification type="JBOSS_MONITOR_NOTIFICATION"/>
             </mbean>
             <mbean name="jboss.system:service=Logging,type=JMXNotificationAppender"/>
          </subscription-list>
       </attribute>
    </mbean>
    -->
-   
+
    <!-- ==================================================================== -->
    <!-- JBoss RMI Classloader - only install when available                  -->
    <!-- ==================================================================== -->
@@ -275,7 +275,7 @@
       -->
       <attribute name="ServerMode">true</attribute>
       <attribute name="SecurityManagerClassName">org.jboss.security.plugins.JaasSecurityManager</attribute>
-      <attribute name="DefaultUnauthenticatedPrincipal">anonymous</attribute> 
+      <attribute name="DefaultUnauthenticatedPrincipal">anonymous</attribute>
       <!-- DefaultCacheTimeout: Specifies the default timed cache policy timeout
       in seconds.
       If you want to disable caching of security credentials, set this to 0 to
@@ -299,11 +299,11 @@
       threads.
       -->
       <attribute name="DeepCopySubjectMode">false</attribute>
-   </mbean> 
+   </mbean>
 
    <!-- Authorization manager-->
    <mbean code="org.jboss.security.plugins.AuthorizationManagerService"
-      name="jboss.security:service=AuthorizationManager"> 
+      name="jboss.security:service=AuthorizationManager">
       <attribute name="AuthorizationManagerClassName">org.jboss.security.plugins.JBossAuthorizationManager</attribute>
    </mbean>
 
@@ -315,14 +315,14 @@
       name="jboss:service=XidFactory">
       <!--attribute name="Pad">true</attribute-->
    </mbean>
-   
+
    <!-- TM Recovery. Obsolete, use JBossTS instead.
       <mbean code="org.jboss.tm.recovery.XidFactoryInitializationService"
       name="jboss:service=XidFactoryInitializer">
       <depends optional-attribute-name="XidFactory">jboss:service=XidFactory</depends>
       <attribute name="NextTxGenerationFile">${jboss.server.data.dir}/next-tx-generation.dat</attribute>
       </mbean>
-      
+
       <mbean code="org.jboss.tm.recovery.BatchRecoveryLoggerService" name="jboss:service=RecoveryLogger">
       <depends optional-attribute-name="XidFactory">jboss:service=XidFactory</depends>
       <depends>jboss:service=XidFactoryInitializer</depends>
@@ -330,14 +330,14 @@
       <attribute name="LogFileSize">5000000</attribute>
       <attribute name="HeuristicStatusLogDirectory">${jboss.server.data.dir}/heuristics-log</attribute>
       </mbean>
-      
+
       <mbean code="org.jboss.tm.recovery.RecoveryManagerService" name="jboss:service=RecoveryManager">
       <depends optional-attribute-name="XidFactory">jboss:service=XidFactory</depends>
       <depends optional-attribute-name="TransactionManager">jboss:service=TransactionManager</depends>
       <depends optional-attribute-name="RecoveryLogger" proxy-type="org.jboss.tm.recovery.RecoveryLoggerInstance">jboss:service=RecoveryLogger</depends>
       </mbean>
    -->
-   
+
    <!--
       | The fast in-memory transaction manager.
       | Deprecated in 5.0.  Use JBossTS JTA instead.
@@ -351,13 +351,13 @@
       <depends optional-attribute-name="XidFactory">jboss:service=XidFactory</depends>
       </mbean>
    -->
-   
+
    <!-- JBossTS JTA -->
    <mbean code="com.arjuna.ats.jbossatx.jta.TransactionManagerService"
       name="jboss:service=TransactionManager">
       <attribute name="TransactionTimeout">300</attribute>
    </mbean>
-   
+
    <!--
       | UserTransaction support. Will be replaced by the DTM once
       | the DTM is made to play nice with JBossTS.
@@ -398,7 +398,7 @@
          </mbean>
       </depends>
    </mbean>
-   
+
    <!--
       | Distributed transaction manager.
       | Includes support for UserTransaction over JBoss remoting.
@@ -413,12 +413,14 @@
       <attribute name="InterpositionEnabled">false</attribute>
       </mbean>
    -->
-   
+
    <!-- ==================================================================== -->
    <!-- Invokers to the JMX node                                             -->
    <!-- ==================================================================== -->
 
    <!-- Unified invoker (based on remoting) -->
+   <!-- Can find more details on unified invoker configuration at -->
+   <!-- http://docs.jboss.org/jbossas/unified_invoker/UnifiedInvoker_guide.html -->
    <mbean code="org.jboss.invocation.unified.server.UnifiedInvoker"
       name="jboss:service=invoker,type=unified">
       <!-- To turn on strict RMI exception propagation uncomment block below -->
@@ -547,7 +549,7 @@
                <!-- can also specify handler by fully qualified classname -->
                <handler subsystem="invoker">jboss:service=invoker,type=unified</handler>
                <!-- The JSR88 deployment service StreamingTarget handler -->
-               <handler subsystem="JSR88">org.jboss.deployment.remoting.DeployHandler</handler>               
+               <handler subsystem="JSR88">org.jboss.deployment.remoting.DeployHandler</handler>
             </handlers>
          </config>
       </attribute>

Modified: trunk/server/src/etc/conf/default/standardjboss.xml
===================================================================
--- trunk/server/src/etc/conf/default/standardjboss.xml	2007-01-09 18:51:49 UTC (rev 59446)
+++ trunk/server/src/etc/conf/default/standardjboss.xml	2007-01-09 18:57:33 UTC (rev 59447)
@@ -53,7 +53,7 @@
     </invoker-proxy-binding>
 
     <invoker-proxy-binding>
-      <name>clustered-entity-rmi-invoker</name>
+      <name>clustered-entity-unified-invoker</name>
       <invoker-mbean>jboss:service=invoker,type=unifiedha</invoker-mbean>
       <proxy-factory>org.jboss.proxy.ejb.ProxyFactoryHA</proxy-factory>
       <proxy-factory-config>
@@ -111,7 +111,7 @@
     </invoker-proxy-binding>
 
     <invoker-proxy-binding>
-      <name>clustered-stateless-rmi-invoker</name>
+      <name>clustered-stateless-unified-invoker</name>
       <invoker-mbean>jboss:service=invoker,type=unifiedha</invoker-mbean>
       <proxy-factory>org.jboss.proxy.ejb.ProxyFactoryHA</proxy-factory>
       <proxy-factory-config>
@@ -161,7 +161,7 @@
     </invoker-proxy-binding>
 
     <invoker-proxy-binding>
-      <name>clustered-stateful-rmi-invoker</name>
+      <name>clustered-stateful-unified-invoker</name>
       <invoker-mbean>jboss:service=invoker,type=unifiedha</invoker-mbean>
       <proxy-factory>org.jboss.proxy.ejb.ProxyFactoryHA</proxy-factory>
       <proxy-factory-config>
@@ -473,7 +473,7 @@
     <container-configuration>
       <container-name>Clustered CMP 2.x EntityBean</container-name>
       <call-logging>false</call-logging>
-      <invoker-proxy-binding-name>clustered-entity-rmi-invoker</invoker-proxy-binding-name>
+      <invoker-proxy-binding-name>clustered-entity-unified-invoker</invoker-proxy-binding-name>
       <sync-on-commit-only>false</sync-on-commit-only>
       <insert-after-ejb-post-create>false</insert-after-ejb-post-create>
       <container-interceptors>
@@ -635,7 +635,7 @@
     <container-configuration>
       <container-name>Clustered CMP EntityBean</container-name>
       <call-logging>false</call-logging>
-      <invoker-proxy-binding-name>clustered-entity-rmi-invoker</invoker-proxy-binding-name>
+      <invoker-proxy-binding-name>clustered-entity-unified-invoker</invoker-proxy-binding-name>
       <sync-on-commit-only>false</sync-on-commit-only>
       <insert-after-ejb-post-create>false</insert-after-ejb-post-create>
       <container-interceptors>
@@ -737,7 +737,7 @@
     <container-configuration>
       <container-name>Clustered Stateless SessionBean</container-name>
       <call-logging>false</call-logging>
-      <invoker-proxy-binding-name>clustered-stateless-rmi-invoker</invoker-proxy-binding-name>
+      <invoker-proxy-binding-name>clustered-stateless-unified-invoker</invoker-proxy-binding-name>
       <container-interceptors>
         <interceptor>org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor</interceptor>
         <interceptor>org.jboss.ejb.plugins.CleanShutdownInterceptor</interceptor>
@@ -810,7 +810,7 @@
     <container-configuration>
       <container-name>Clustered Stateful SessionBean</container-name>
       <call-logging>false</call-logging>
-      <invoker-proxy-binding-name>clustered-stateful-rmi-invoker</invoker-proxy-binding-name>
+      <invoker-proxy-binding-name>clustered-stateful-unified-invoker</invoker-proxy-binding-name>
       <container-interceptors>
         <interceptor>org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor</interceptor>
         <interceptor>org.jboss.ejb.plugins.CleanShutdownInterceptor</interceptor>
@@ -897,7 +897,7 @@
     <container-configuration>
       <container-name>Clustered BMP EntityBean</container-name>
       <call-logging>false</call-logging>
-      <invoker-proxy-binding-name>clustered-entity-rmi-invoker</invoker-proxy-binding-name>
+      <invoker-proxy-binding-name>clustered-entity-unified-invoker</invoker-proxy-binding-name>
       <sync-on-commit-only>false</sync-on-commit-only>
       <insert-after-ejb-post-create>false</insert-after-ejb-post-create>
       <container-interceptors>




More information about the jboss-cvs-commits mailing list