User: user57  
  Date: 02/01/02 20:00:52

  Modified:    src/etc  cluster-service.xml farm-service.xml
  Log:
   o migrated all components to a new JMX domain name model.  jboss.system
     is now where to core/spine components live.  moved all components that
     were in JBOSS-SYSTEM that did not move into a jboss.* domain into
     jboss (where the server is now registered).  The point was to limit the
     members of jboss.system to core bits only.
   o Created org.jboss.system.Server, which does the work of initialization
     that org.jboss.Main used to do.  Main now only parses the command line,
     sets up basic legecy properties and creates a Server instance.
   o Moved functionality of Shutdown (component not cl tool) into Server (
     which is bound as jboss.system:service=Server)
   o Moved more Runtime access from Info into Server.  Exposed memory info
     as attributes.
   o Logging a WARN everywhere that uses System.getProperty("jboss.system.home")
     as that should go away soon/eventually.
   o Initialized the invokerMap in the harmi impl to avoid NPE
   o Made getopt.jar a member of the lib/* dir instead of adding it to the
     run.jar and shutdown.jars each time.
   o Minor cosmetic changes along the way.
  
  Revision  Changes    Path
  1.3       +13 -10    jbossmx/src/etc/cluster-service.xml
  
  Index: cluster-service.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbossmx/src/etc/cluster-service.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- cluster-service.xml       2001/12/31 20:51:03     1.2
  +++ cluster-service.xml       2002/01/03 04:00:51     1.3
  @@ -1,9 +1,8 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
  -
   <!-- ===================================================================== -->
   <!--                                                                       -->
  -<!--  Sample Clustering Service Configuration                                   -->
  +<!--  Sample Clustering Service Configuration                              -->
   <!--                                                                       -->
   <!-- ===================================================================== -->
   
  @@ -11,33 +10,37 @@
   
     <classpath archives="jbossha.jar"/>
   
  -  <depends>JBOSS-SYSTEM:service=Naming</depends>
  +  <depends>jboss:service=Naming</depends>
   
     <!-- ==================================================================== -->
     <!-- Cluster Partition: defines cluster                                   -->
     <!-- ==================================================================== -->
   
  -  <mbean code="org.jboss.ha.framework.server.ClusterPartition" 
name="JBOSS-SYSTEM:service=DefaultPartition">
  +  <mbean code="org.jboss.ha.framework.server.ClusterPartition"
  +         name="jboss:service=DefaultPartition">
     </mbean>
   
     <!-- ==================================================================== -->
     <!-- HA Session State Service for SFSB                                    -->
     <!-- ==================================================================== -->
   
  -  <mbean code="org.jboss.ha.hasessionstate.server.HASessionStateService" 
name="JBOSS-SYSTEM:service=HASessionState">
  -     <depends>JBOSS-SYSTEM:service=DefaultPartition</depends>
  +  <mbean code="org.jboss.ha.hasessionstate.server.HASessionStateService"
  +         name="jboss:service=HASessionState">
  +     <depends>jboss:service=DefaultPartition</depends>
     </mbean>
   
     <!-- ==================================================================== -->
     <!-- HA JNDI                                                              -->
     <!-- ==================================================================== -->
   
  -  <mbean code="org.jboss.ha.jndi.HANamingService" 
name="JBOSS-SYSTEM:service=HAJNDI">
  -     <depends>JBOSS-SYSTEM:service=DefaultPartition</depends>
  +  <mbean code="org.jboss.ha.jndi.HANamingService" 
  +         name="jboss:service=HAJNDI">
  +     <depends>jboss:service=DefaultPartition</depends>
     </mbean>
   
  -  <mbean code="org.jboss.invocation.jrmp.server.JRMPInvokerHA" 
name="JBOSS-SYSTEM:service=invoker,type=jrmpha">
  -     <depends>JBOSS-SYSTEM:service=DefaultPartition</depends>
  +  <mbean code="org.jboss.invocation.jrmp.server.JRMPInvokerHA"
  +         name="jboss:service=invoker,type=jrmpha">
  +     <depends>jboss:service=DefaultPartition</depends>
     </mbean>
   
   </server>
  
  
  
  1.2       +6 -6      jbossmx/src/etc/farm-service.xml
  
  Index: farm-service.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbossmx/src/etc/farm-service.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- farm-service.xml  2001/12/07 06:49:11     1.1
  +++ farm-service.xml  2002/01/03 04:00:51     1.2
  @@ -10,22 +10,22 @@
   
      <classpath archives="jbossha.jar"/>
   
  -   <depends>JBOSS-SYSTEM:service=Naming</depends>
  -   <depends>JBOSS-SYSTEM:service=ServiceDeployer</depends>
  +   <depends>jboss:service=Naming</depends>
  +   <depends>jboss.system:service=ServiceDeployer</depends>
   
      <!-- ==================================================================== -->
      <!-- Cluster Partition: defines cluster                                   -->
      <!-- ==================================================================== -->
   
  -   <mbean code="org.jboss.ha.framework.server.ClusterPartition" 
name="JBOSS-SYSTEM:service=DefaultPartition">
  +   <mbean code="org.jboss.ha.framework.server.ClusterPartition" 
name="jboss:service=DefaultPartition">
      </mbean>
   
  -   <mbean code="org.jboss.ha.framework.server.FarmMemberService" 
name="JBOSS-SYSTEM:spine=FarmMember" >
  +   <mbean code="org.jboss.ha.framework.server.FarmMemberService" 
name="jboss:service=FarmMember" >
      </mbean>
   
  -   <mbean code="org.jboss.deployment.AutoDeployer" 
name="JBOSS-SYSTEM:service=FarmAutoDeployer">
  +   <mbean code="org.jboss.deployment.AutoDeployer" 
name="jboss:service=FarmAutoDeployer">
         <attribute name="Deployers">
  -         JBOSS-SYSTEM:spine=FarmMember
  +         jboss:service=FarmMember
         </attribute>
         <attribute name="URLs">
            ../deploy/farm
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to