User: chirino 
  Date: 01/07/28 09:14:50

  Modified:    src/etc/conf/default jboss.jcml
  Log:
  Added some comments to the configuration file.
  
  Revision  Changes    Path
  1.8       +14 -9     jbossmq/src/etc/conf/default/jboss.jcml
  
  Index: jboss.jcml
  ===================================================================
  RCS file: /cvsroot/jboss/jbossmq/src/etc/conf/default/jboss.jcml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- jboss.jcml        2001/07/28 00:30:15     1.7
  +++ jboss.jcml        2001/07/28 16:14:49     1.8
  @@ -21,45 +21,50 @@
       <attribute name="Port">1099</attribute>
     </mbean>
     <mbean code="org.jboss.naming.JNDIView" name="DefaultDomain:service=JNDIView" />
  -
     <!-- ==================================================================== -->
     <!-- JBossMQ                                                              -->
     <!-- ==================================================================== -->
  -  <mbean code="org.jbossmq.server.JBossMQService" name="JBossMQ:service=Server">
  -  </mbean>
  +  <mbean code="org.jbossmq.server.JBossMQService" name="JBossMQ:service=Server"/>
   
  +  <!-- The StateManager is used to keep JMS perisitent state data. -->
  +  <!-- For example: what durable subscriptions are active. -->
     <mbean code="org.jbossmq.server.StateManager" name="JBossMQ:service=StateManager">
        <attribute name="StateFile">jbossmq-state.xml</attribute>
     </mbean>
   
  +  <!-- The PersistenceManager is used to store messages to disk. -->
     <mbean code="org.jbossmq.pm.file.PersistenceManager" 
name="JBossMQ:service=PersistenceManager">
       <attribute name="DataDirectory">../../db/jbossmq/</attribute>
     </mbean>
   
  +  <!-- InvocationLayers are the different transport methods that can be used to 
access the server -->
     <mbean code="org.jbossmq.il.jvm.JVMServerILService" 
name="JBossMQ:service=InvocationLayer,type=JVM">
       <attribute name="ConnectionFactoryJNDIRef">java:/ConnectionFactory</attribute>
       <attribute 
name="XAConnectionFactoryJNDIRef">java:/XAConnectionFactory</attribute>
     </mbean>
   
  -  <mbean code="org.jbossmq.il.oil.OILServerILService" 
name="JBossMQ:service=InvocationLayer,type=OIL">
  +  <mbean code="org.jbossmq.il.rmi.RMIServerILService" 
name="JBossMQ:service=InvocationLayer,type=RMI"> 
       <attribute name="ConnectionFactoryJNDIRef">ConnectionFactory</attribute>
       <attribute name="XAConnectionFactoryJNDIRef">XAConnectionFactory</attribute>
     </mbean>
   
  +  <mbean code="org.jbossmq.il.oil.OILServerILService" 
name="JBossMQ:service=InvocationLayer,type=OIL">
  +    <attribute name="ConnectionFactoryJNDIRef">OILConnectionFactory</attribute>
  +    <attribute name="XAConnectionFactoryJNDIRef">OILXAConnectionFactory</attribute>
  +  </mbean>
  +
     <mbean code="org.jbossmq.il.uil.UILServerILService" 
name="JBossMQ:service=InvocationLayer,type=UIL">
       <attribute name="ConnectionFactoryJNDIRef">UILConnectionFactory</attribute>
       <attribute name="XAConnectionFactoryJNDIRef">UILXAConnectionFactory</attribute>
     </mbean>
  -
  -  <mbean code="org.jbossmq.il.rmi.RMIServerILService" 
name="JBossMQ:service=InvocationLayer,type=RMI"> 
  -    <attribute name="ConnectionFactoryJNDIRef">RMIConnectionFactory</attribute>
  -    <attribute name="XAConnectionFactoryJNDIRef">RMIXAConnectionFactory</attribute>
  -  </mbean>
   
  +  <!-- The following three line create 3 topics named: testTopic, example, and bob 
-->
     <mbean code="org.jbossmq.server.TopicManager" 
name="JBossMQ:service=Topic,name=testTopic"/>
     <mbean code="org.jbossmq.server.TopicManager" 
name="JBossMQ:service=Topic,name=example"/>
     <mbean code="org.jbossmq.server.TopicManager" 
name="JBossMQ:service=Topic,name=bob"/>
   
  +  <!-- The following 9 line create 9 topics named: testQueue, controlQueue, A, B, 
-->
  +  <!-- C, D, E, F, and ex --> 
     <mbean code="org.jbossmq.server.QueueManager" 
name="JBossMQ:service=Queue,name=testQueue"/>
     <mbean code="org.jbossmq.server.QueueManager" 
name="JBossMQ:service=Queue,name=controlQueue"/>
     <mbean code="org.jbossmq.server.QueueManager" 
name="JBossMQ:service=Queue,name=A"/>
  
  
  

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

Reply via email to