1 Reply Latest reply on Oct 12, 2004 10:53 AM by starksm64

    Stand-alone JNDI config for JMS

    pbowker

      I need to configure the JBossNS to be able to look-up a queue. Clearly I will use a resource description to create the queue ie.

      <resource-env-ref>
       <resource-env-ref-name>jms/MyTestQueue</resource-env-ref-name>
       <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
      </resource-env-ref>
      


      Previously I used such a reference in the context of a session bean. However I would now like to create such a resource to be accessed by POJOs (a JMS consumer and producer).

      How do I write such a reference and into which file should the reference be put?