[jboss-user] [EJB 3.0 Users] - Re: EJB3.0 MDB example

2009-11-03 Thread Wolfgang Knauf
Hi, the only dynamic way of creating the queues I know is to tell JBoss to autocreate them: https://jira.jboss.org/jira/browse/JBAS-6013 Hope this helps Wolfgang View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4263661#4263661 Reply to the post :

[jboss-user] [EJB 3.0 Users] - Re: EJB3.0 MDB example

2009-11-03 Thread rodedh
You can use Message Driven POJOs. | import org.jboss.annotation.ejb.DeliveryMode; | import org.jboss.annotation.ejb.MessageProperties; | import org.jboss.annotation.ejb.Producer; | | @Producer(connectionFactory=java:/JmsXA) | @MessageProperties(delivery=DeliveryMode.NON_PERSISTENT,

[jboss-user] [EJB 3.0 Users] - Re: EJB3.0 MDB example

2009-11-01 Thread jaikiran
k...@tieroneoss.com wrote : | Why aren't these queued defined when you define the Message Driven Bean? | Queues (or topics) are part of the JMS configurations and are independent of EJB3. MDBs are just one way of listening to such destinations. As such, creation of destinations isn't part