Can you elaborate on your use-case a bit? What is the client doing to cause the queue to be auto-created (e.g. sending a message, creating a consumer, etc.). Is the client using the JMS API? If so, it is working with a "queue" or a "topic"?
Also, the "name" attributes of the address and queue elements don't support wild-cards. Wild-cards are supported in the "match" elements of things like address-setting. Justin On Fri, Jan 5, 2018 at 10:15 AM, andi welchlin <andi.welch...@gmail.com> wrote: > Hello, > > I would like to use queues which are automatically created. > > So I tried it out and saw that they are not durable (persistent), which > means a late joiner will not get messages. > > My try to configure some default behaviour for all queues which begin with > 'M' was this: > > <address name="M#"> > <anycast> > <queue name="M#"> > <durable>true</durable> > </queue> > </anycast> > </address> > > > But this did not work. > > Is there someone who can help me? > > Kind Regards, > Andreas >