JMS doesn't have such an automatic semantic for creating queues. Queues + selectors will do it, but it won't scale. There is no index backing the selector.
The only way you could achieve it scalably would be use a single topic and then create Durable Topic Subscriptions for each "arg" value. But this is a bit cumbersome because durable topic subscriptions require you create client ids so you can reconnect to them and you have to make sure they exist before you send the message. To me, it sounds more like a solution for a database than JMS. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4161226#4161226 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4161226 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
