User: d_jencks
  Date: 01/09/26 14:47:04

  Modified:    src/etc/conf/default hsql-default-service.xml
                        j2eedeployment-service.xml jboss-service.xml
                        jms-service.xml
  Removed:     src/etc/conf/default core-service.xml
  Log:
  ServiceDeployer: added local dir support, undeploy support for depends, reworked 
classpath dependencies. Changed config files to work. REMOVE core-service.xml or 
build.sh cleancvs update -d -P >update11.log
  
  Revision  Changes    Path
  1.3       +6 -2      jboss/src/etc/conf/default/hsql-default-service.xml
  
  Index: hsql-default-service.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/conf/default/hsql-default-service.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- hsql-default-service.xml  2001/09/11 02:48:05     1.2
  +++ hsql-default-service.xml  2001/09/26 21:47:04     1.3
  @@ -7,18 +7,22 @@
   <!--                                                                       -->
   <!-- ===================================================================== -->
   
  -<!-- $Id: hsql-default-service.xml,v 1.2 2001/09/11 02:48:05 dmaplesden Exp $ -->
  +<!-- $Id: hsql-default-service.xml,v 1.3 2001/09/26 21:47:04 d_jencks Exp $ -->
   
   
   <server>
   
     <depends>JBOSS-SYSTEM:service=Naming</depends>
     <depends>JBOSS-SYSTEM:service=TransactionManager</depends>
  +  
<depends>JCA:service=ConnectionManagerFactoryLoader,name=MinervaSharedLocalCMFactory</depends>
  +  <depends>JCA:service=RARDeployer</depends>
   
     <classpath archives="
         hsql.jar, 
  -      jbosscx.sar,
         hsql-plugin.jar"/>
  +<!--rely on ConnectionFactoryLoader packages with ConnectionManagerFactoryLoader-->
  +  <!--classpath codebase="." archives="
  +      jbosscx.sar"/-->
   
     <!-- ==================================================================== -->
     <!-- JDBC - Initialize the databases                                      -->
  
  
  
  1.5       +8 -1      jboss/src/etc/conf/default/j2eedeployment-service.xml
  
  Index: j2eedeployment-service.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/conf/default/j2eedeployment-service.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- j2eedeployment-service.xml        2001/09/17 00:59:04     1.4
  +++ j2eedeployment-service.xml        2001/09/26 21:47:04     1.5
  @@ -10,7 +10,7 @@
     <!-- ==================================================================== -->
   
     <mbean code="org.jboss.ejb.ContainerFactory"
  -      name=":service=ContainerFactory">
  +      name="JBOSS-SYSTEM:service=ContainerFactory">
       <attribute name="VerifyDeployments">true</attribute>
       <attribute name="ValidateDTDs">false</attribute>
       <attribute name="MetricsEnabled">false</attribute>
  @@ -37,5 +37,12 @@
       <attribute name="WarDeployerName">JBOSS-SYSTEM:service=Jetty</attribute>
     </mbean>
     -->
  +  <!-- ==================================================================== -->
  +  <!-- RAR deployment                                                      -->
  +  <!-- ==================================================================== -->
  +
  +  <mbean code="org.jboss.resource.RARDeployer" 
  +      name="JCA:service=RARDeployer">
  +  </mbean>
   
   </server>
  
  
  
  1.13      +130 -16   jboss/src/etc/conf/default/jboss-service.xml
  
  Index: jboss-service.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/conf/default/jboss-service.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- jboss-service.xml 2001/09/12 23:06:40     1.12
  +++ jboss-service.xml 2001/09/26 21:47:04     1.13
  @@ -7,7 +7,7 @@
   <!--                                                                       -->
   <!-- ===================================================================== -->
   
  -<!-- $Id: jboss-service.xml,v 1.12 2001/09/12 23:06:40 dmaplesden Exp $ -->
  +<!-- $Id: jboss-service.xml,v 1.13 2001/09/26 21:47:04 d_jencks Exp $ -->
   
   <!-- 
      |  This is where you can add and configure your MBeans.
  @@ -33,21 +33,12 @@
     <classpath archives="
         castor.jar,
         castor-jdo-plugin.jar,
  -      org.mortbay.jetty.jar,
  -      org.mortbay.jetty.jmx.jar,
  -      org.mortbay.tools.jar,
         concurrent.jar,
  -      crimson.jar,
  -      cryptix-sasl-jetty.jar,
         gnu-regexp.jar,
  -      hsql.jar, 
  -      hsql-plugin.jar,
         jaas.jar,
  -      javac.jar,
         JavaGroups.jar,
         javax.servlet.jar,
         javax-sasl.jar,
  -      jaxp.jar,
         jbossha.jar,
         jboss-j2ee.jar,
         jboss.jar,
  @@ -55,7 +46,6 @@
         jbosspool.jar,
         jbosssx.jar,
         jcert.jar,
  -      jetty-plugin.jar,
         jmxtools.jar,
         jndi.jar,
         jnet.jar,
  @@ -66,20 +56,86 @@
         jsse.jar,
         jts.jar,
         mail.jar,
  -      org.apache.jasper.jar,
         RARDeployer.jar,
         tyrex.jar,
         tyrex-tm-plugin.jar,
         xalan.jar"/>
   
  +
  +  <!-- ==================================================================== -->
  +  <!-- Class Loading                                                        -->
  +  <!-- ==================================================================== -->
  +
  +  <mbean code="org.jboss.web.WebService"
  +      name="JBOSS-SYSTEM:service=Webserver">
  +    <attribute name="Port">8083</attribute>
  +    <!-- Should resources and non-EJB classes be downloadable -->
  +    <attribute name="DownloadServerClasses">true</attribute>
  +  </mbean>
  +
  +  <!-- ==================================================================== -->
  +  <!-- JNDI                                                                 -->
  +  <!-- ==================================================================== -->
  +
  +  <mbean code="org.jboss.naming.NamingService"
  +      name="JBOSS-SYSTEM:service=Naming">
  +    <attribute name="Port">1099</attribute>
  +  </mbean>
  +  <mbean code="org.jboss.naming.JNDIView" 
  +      name="JBOSS-SYSTEM:service=JNDIView"/>
  +
  +  <!-- ==================================================================== -->
  +  <!-- Security                                                             -->
  +  <!-- ==================================================================== -->
  +
  +  <mbean code="org.jboss.security.plugins.SecurityConfig"
  +      name="Security:name=SecurityConfig">
  +    <attribute name="AuthConf">auth.conf</attribute>
  +  </mbean>
  +
  +  <!-- JAAS security manager and realm mapping -->
  +  <mbean code="org.jboss.security.plugins.JaasSecurityManagerService"
  +      name="Security:name=JaasSecurityManager">
  +    <attribute name="SecurityManagerClassName">
  +      org.jboss.security.plugins.JaasSecurityManager
  +    </attribute>
  +  </mbean>
  +
     <!-- ==================================================================== -->
  -  <!-- Auto deployment                                                      -->
  +  <!-- Transactions                                                         -->
     <!-- ==================================================================== -->
  +
  +  <mbean code="org.jboss.tm.TransactionManagerService" 
  +      name="JBOSS-SYSTEM:service=TransactionManager">
  +    <attribute name="TransactionTimeout">300</attribute>
  +
  +    <!-- Use this attribute if you need to use a specific Xid
  +         implementation
  +    <attribute name="XidClassName">oracle.jdbc.xa.OracleXid</attribute>
  +    -->
  +  </mbean>
   
  -  <mbean code="org.jboss.resource.RARDeployer" 
  -      name="JCA:service=RARDeployer">
  +  <!-- 
  +     | Uncomment to use Tyrex (tyrex.exolab.org) transaction manager plugin
  +     | instead of the org.jboss.tm.TransactionManagerService and comment out
  +     | the TransactionManagerService above.
  +     |
  +  <mbean code="org.jboss.tm.plugins.tyrex.TransactionManagerService"
  +         name="JBOSS-SYSTEM:service=TransactionManager">
  +        <attribute name="ConfigFileName">../conf/default/domain.xml</attribute>
     </mbean>
  +  -->
  +
  +  <mbean code="org.jboss.tm.usertx.server.ClientUserTransactionService"
  +      name="JBOSS-SYSTEM:service=ClientUserTransaction">
  +  </mbean>
  +
  +
  +  <!-- ==================================================================== -->
  +  <!-- And now to get everything else going...                              -->
  +  <!-- ==================================================================== -->
   
  +
     <mbean code="org.jboss.deployment.AutoDeployer" 
name="JBOSS-SYSTEM:service=AutoDeployer">
       <attribute name="Deployers">
         JBOSS-SYSTEM:service=ServiceDeployer;
  @@ -88,11 +144,69 @@
       </attribute>
       <attribute name="URLs">
         ../deploy/lib,
  -             ../deploy
  +      ../deploy
       </attribute>
       <attribute name="Timeout">
         3000
       </attribute>
     </mbean>
  +
  +  <!-- ==================================================================== -->
  +  <!-- JBoss Server Management                                              -->
  +  <!-- ==================================================================== -->
  +
  +  <!-- AS Temporary not available
  +  <mbean code="org.jboss.management.ServerDataCollector"
  +         name="Management:service=Collector">
  +    <attribute name="RefreshSleep">5000</attribute>
  +  </mbean>
  +  -->
  +
  +  <!-- ==================================================================== -->
  +  <!-- Monitoring and Management                                            -->
  +  <!-- ==================================================================== -->
  +
  +  <!-- Uncomment to enable JMX monitoring of the bean cache
  +  <mbean code="org.jboss.monitor.BeanCacheMonitor" 
  +         name="Monitor:name=BeanCacheMonitor"/>
  +  -->
  +
  +
  +  <!-- ==================================================================== -->
  +  <!-- Scheduler Service                                                    -->
  +  <!-- ==================================================================== -->
  +
  +  <!-- Uncomment this to enable Scheduling
  +  <mbean code="org.jboss.util.Scheduler" name=":service=Scheduler">
  +    <constructor>
  +      <arg type="java.lang.String" value=":server=Scheduler"/>
  +      <arg type="java.lang.String" 
value="org.jboss.util.Scheduler$SchedulableExample"/>
  +      <arg type="java.lang.String" value="Schedulabe Test,12345"/>
  +      <arg type="java.lang.String" value="java.lang.String,int"/>
  +      <arg type="long" value="0"/>
  +      <arg type="long" value="10000"/>
  +      <arg type="long" value="-1"/>
  +    </constructor>
  +  </mbean>
  +  -->
  +
  +  <!-- Uncomment this and set up according to manual to add Castor JDO service
  +  <mbean code="org.jboss.jdo.castor.CastorJDOImpl"
  +         name="JBOSS-SYSTEM:service=CastorJDO,name=someName">
  +    <attribute name="Configuration">
  +      file:../conf/default/database.xml
  +    </attribute>
  +    <attribute name="JndiName">jdo/someName</attribute>
  +    <attribute name="LockTimeout">0</attribute>
  +    <attribute name="LoggingEnabled">false</attribute>
  +    <attribute name="CommonClassPath">false</attribute>
  +  </mbean>
  +  -->
  +
  +
  +  <!-- ==================================================================== -->
  +  <!-- Don't you date add your custom MBeans here! put them in a sar!       -->
  +  <!-- ==================================================================== -->
  +
   
   </server>
  
  
  
  1.2       +5 -1      jboss/src/etc/conf/default/jms-service.xml
  
  Index: jms-service.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/conf/default/jms-service.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jms-service.xml   2001/09/11 02:48:05     1.1
  +++ jms-service.xml   2001/09/26 21:47:04     1.2
  @@ -5,8 +5,12 @@
     <depends>JBOSS-SYSTEM:service=Naming</depends>
     <depends>JBossMQ:service=Server</depends>
     <depends>JBOSS-SYSTEM:service=TransactionManager</depends>
  +  
<depends>JCA:service=ConnectionManagerFactoryLoader,name=MinervaXACMFactory</depends>
  +  <depends>JCA:service=RARDeployer</depends>
   
  -  <classpath archives="jbosscx.sar"/>
  + 
  +<!--rely on ConnectionFactoryLoader packages with ConnectionManagerFactoryLoader-->
  +  <!--classpath codebase="." archives="jbosscx.sar"/-->
   
     <!-- ==================================================================== -->
     <!-- JMS Stuff                                                       -->
  
  
  

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

Reply via email to