3 Replies Latest reply on Jan 13, 2009 6:51 AM by siddharth_2279

    Configuring administered objects(queue/topics) in JBoss-5.0.

    siddharth_2279

      Hi All,
      I have downloaded and installed JBoss-5.0.0.GA on my machine. I would like to configure my own queues and topics. For this I went to the location (jboss-5.0.0.GA\server\default\deploy\messaging) on my machine. There I went to destinations-service.xml . I opened this file and found the following entry.

      <?xml version="1.0" encoding="UTF-8"?>
      
      <!--
       Messaging Destinations deployment descriptor.
      
       $Id: destinations-service.xml 81998 2008-12-03 06:46:29Z scott.stark@jboss.org $
       -->
      
      <server>
      
       <!--
       The Default Dead Letter Queue. This destination is a dependency of an EJB MDB container.
       -->
      
       <mbean code="org.jboss.jms.server.destination.QueueService"
       name="jboss.messaging.destination:service=Queue,name=DLQ"
       xmbean-dd="xmdesc/Queue-xmbean.xml">
       <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
       <depends>jboss.messaging:service=PostOffice</depends>
       </mbean>
      
       <!--
       The Default Expiry Queue.
       -->
      
       <mbean code="org.jboss.jms.server.destination.QueueService"
       name="jboss.messaging.destination:service=Queue,name=ExpiryQueue"
       xmbean-dd="xmdesc/Queue-xmbean.xml">
       <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
       <depends>jboss.messaging:service=PostOffice</depends>
       </mbean>
      
      
      </server>


      I suppose this file is incomplete. There is not entry for topics and entry for queues is also incomplete. My JBoss-5.0.0.GA was downloaded and installed successfully. So why are the entries in destinations-service.xml incomplete. What do I do now ? Please guide me. I am unable to proceed further due to this.

      Thanks in advance.