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

  Modified:    jboss.net/docs README.html
  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       +11 -11    contrib/jboss.net/docs/README.html
  
  Index: README.html
  ===================================================================
  RCS file: /cvsroot/jboss/contrib/jboss.net/docs/README.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- README.html       2001/10/12 12:17:48     1.2
  +++ README.html       2002/01/03 04:00:54     1.3
  @@ -179,12 +179,12 @@
   you have to give it a reference to JBoss.netīs Axis service (in 
conf/default/jboss-service.xml)
   
   <pre>
  -   &lt;mbean code=&quot;org.jboss.deployment.AutoDeployer&quot; 
name=&quot;JBOSS-SYSTEM:service=AutoDeployer&quot;&gt;
  +   &lt;mbean code=&quot;org.jboss.deployment.AutoDeployer&quot; 
name=&quot;jboss:service=AutoDeployer&quot;&gt;
      &lt;attribute name=&quot;Deployers&quot;&gt;
  -      JBOSS-SYSTEM:service=ServiceDeployer;
  -      JCA:service=RARDeployer;
  -      J2EE:service=J2eeDeployer;
  -      JBOSS-SYSTEM:service=Axis
  +      jboss.system:service=ServiceDeployer;
  +      jboss.jca:service=RARDeployer;
  +      jboss.j2ee:service=J2eeDeployer;
  +      jboss:service=Axis
       &lt;/attribute&gt;
       ...
      &lt;/mbean&gt;
  @@ -198,11 +198,11 @@
   
   &lt;server&gt;
   
  -  &lt;depends&gt;JBOSS-SYSTEM:service=Jetty&lt;/depends&gt;
  +  &lt;depends&gt;jboss.web:service=Jetty&lt;/depends&gt;
   
     &lt;mbean code=&quot;org.jboss.net.axis.server.AxisService&quot;
  -      name=&quot;JBOSS-SYSTEM:service=Axis&quot;&gt;
  -    &lt;attribute 
name=&quot;WarDeployerName&quot;&gt;JBOSS-SYSTEM:service=Jetty&lt;/attribute&gt;
  +      name=&quot;jboss:service=Axis&quot;&gt;
  +    &lt;attribute 
name=&quot;WarDeployerName&quot;&gt;jboss.web:service=Jetty&lt;/attribute&gt;
       &lt;attribute name=&quot;RootContext&quot;&gt;axis/&lt;/attribute&gt;
     &lt;/mbean&gt;
   
  @@ -217,11 +217,11 @@
   <pre>
    
     &lt;mbean code=&quot;org.jboss.deployment.J2eeDeployer&quot;
  -      name=&quot;J2EE:service=J2eeDeployer&quot;&gt;
  +      name=&quot;jboss.j2ee:service=J2eeDeployer&quot;&gt;
       &lt;attribute name=&quot;DeployerName&quot;&gt;Default&lt;/attribute&gt;
       &lt;attribute 
name=&quot;JarDeployerName&quot;&gt;:service=ContainerFactory&lt;/attribute&gt;
  -    &lt;attribute 
name=&quot;WarDeployerName&quot;&gt;JBOSS-SYSTEM:service=Jetty&lt;/attribute&gt;
  -    &lt;attribute 
name=&quot;JavaDeployerName&quot;&gt;JBOSS-SYSTEM:service=Axis&lt;/attribute&gt;
  +    &lt;attribute 
name=&quot;WarDeployerName&quot;&gt;jboss.web:service=Jetty&lt;/attribute&gt;
  +    &lt;attribute 
name=&quot;JavaDeployerName&quot;&gt;jboss:service=Axis&lt;/attribute&gt;
     &lt;/mbean&gt;
   
   </pre>
  
  
  

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

Reply via email to