User: chirino 
  Date: 01/07/10 19:07:40

  Modified:    src/etc/conf/default jboss.jcml jndi.properties
  Removed:     src/etc/conf/default jbossmq.properties jbossmq.xml
  Log:
  JBossMQ is now tottaly configured via JMX.  Changing config files to reflect that
  
  Revision  Changes    Path
  1.4       +51 -2     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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- jboss.jcml        2001/06/24 21:15:30     1.3
  +++ jboss.jcml        2001/07/11 02:07:40     1.4
  @@ -22,7 +22,56 @@
     </mbean>
     <mbean code="org.jboss.naming.JNDIView" name="DefaultDomain:service=JNDIView" />
   
  -  <!-- For Message Driven Beans -->
  -  <mbean code="org.jbossmq.server.JBossMQService" 
name="DefaultDomain:service=JBossMQ" />
  +  <!-- ==================================================================== -->
  +  <!-- JBossMQ                                                              -->
  +  <!-- ==================================================================== -->
  +  <mbean code="org.jbossmq.server.JBossMQService" name="JBossMQ:service=Server">
  +  </mbean>
  +
  +  <mbean code="org.jbossmq.server.StateManager" name="JBossMQ:service=StateManager">
  +  </mbean>
  +
  +  <mbean code="org.jbossmq.pm.file.PersistenceManager" 
name="JBossMQ:service=PersistenceManager">
  +    <attribute name="DataDirectory">../../db/jbossmq/</attribute>
  +  </mbean>
  +
  +  <mbean code="org.jbossmq.server.QueueManager" 
name="JBossMQ:service=Queue,name=testQueue">
  +    <attribute name="QueueName">testQueue</attribute>
  +  </mbean>
  +
  +  <mbean code="org.jbossmq.server.TopicManager" 
name="JBossMQ:service=Topic,name=testTopic">
  +    <attribute name="TopicName">testTopic</attribute>
  +  </mbean>
  +
  +  <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">
  +    <attribute name="ConnectionFactoryJNDIRef">ConnectionFactory</attribute>
  +    <attribute name="XAConnectionFactoryJNDIRef">XAConnectionFactory</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>
  +
  +  <!-- ==================================================================== -->
  +  <!-- JMX adaptors                                                         -->
  +  <!-- ==================================================================== -->
  +  <mbean code="org.jboss.jmx.server.JMXAdaptorService" name="Adaptor:name=RMI" />
  +  <mbean code="org.jboss.jmx.server.RMIConnectorService" name="Connector:name=RMI" 
/>
  +  <mbean code="com.sun.jdmk.comm.HtmlAdaptorServer" name="Adaptor:name=html">
  +    <attribute name="MaxActiveClientCount">10</attribute>
  +    <attribute name="Parser" />
  +    <attribute name="Port">8082</attribute>
  +  </mbean>
   
   </server>
  
  
  
  1.4       +1 -1      jbossmq/src/etc/conf/default/jndi.properties
  
  Index: jndi.properties
  ===================================================================
  RCS file: /cvsroot/jboss/jbossmq/src/etc/conf/default/jndi.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- jndi.properties   2001/06/24 21:51:57     1.3
  +++ jndi.properties   2001/07/11 02:07:40     1.4
  @@ -2,4 +2,4 @@
   java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
   # Do NOT uncomment this line as it causes in VM calls to go over
   # RMI!
  -java.naming.provider.url=localhost
  +#java.naming.provider.url=localhost
  
  
  

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

Reply via email to