Wildcards can only match an entire name within a path. So *.*.*.out would match A.B.C.out, but there's no way to write a wildcard to match A.B.Cout in your example.
Also, > can only be used at the end of a pattern. Tim On Apr 9, 2015 2:21 AM, "Martin Lichtin" <lich...@yahoo.com.invalid> wrote: > I read http://activemq.apache.org/wildcards.html but am still puzzled > about > how to write a pattern that matches queue names with a particular suffix. > > For example, for queue names such as A.B.Cout and D.E.Fout will > > <redeliveryPolicy queue="*out" > > be enough to match the queues? Or do I need > > <redeliveryPolicy queue=">*out" > > or something else even? >