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

  Modified:    jboss.net/src/resources/plugin/META-INF jboss-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.7       +8 -9      
contrib/jboss.net/src/resources/plugin/META-INF/jboss-service.xml
  
  Index: jboss-service.xml
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/jboss.net/src/resources/plugin/META-INF/jboss-service.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- jboss-service.xml 2001/12/18 21:34:20     1.6
  +++ jboss-service.xml 2002/01/03 04:00:54     1.7
  @@ -1,8 +1,10 @@
   <?xml version="1.0" encoding="UTF-8"?>
  +<!DOCTYPE server>
  +<!-- $Id: jboss-service.xml,v 1.7 2002/01/03 04:00:54 user57 Exp $ -->
   
   <server>
   
  -  <classpath archives="axis.jar,javax.servlet.jar"/>
  +  <classpath archives="axis.jar, javax.servlet.jar"/>
   
     <!-- ==================================================================== -->
     <!-- Starts the Axis Deployer                                             -->
  @@ -16,23 +18,20 @@
        | 
        | If you want to enable several services, be sure that you choose
        | different root contexts
  -     |
      -->
     <mbean code="org.jboss.net.axis.server.AxisService"
  -      name="JBOSS-SYSTEM:service=Axis">
  -    <depends>JBOSS-SYSTEM:service=Jetty</depends>
  -    <attribute name="WarDeployerName">JBOSS-SYSTEM:service=Jetty</attribute>
  +      name="jboss:service=Axis">
  +    <depends>jboss.web:service=Jetty</depends>
  +    <attribute name="WarDeployerName">jboss.web:service=Jetty</attribute>
       <attribute name="RootContext">axis</attribute>
     </mbean>
   
     <!-- 
        | Uncomment to enable the Axis JMX Adaptor
  -     |
  -  -->
  +   -->
     <mbean code="org.jboss.net.jmx.adaptor.server.Adaptor"
         name="Web:service=Adaptor">
  -    <depends>JBOSS-SYSTEM:service=Axis</depends>
  +    <depends>jboss:service=Axis</depends>
     </mbean>
  -
   
   </server>
  
  
  

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

Reply via email to