Re: Questions regarding auto-creation

2023-11-06 Thread Calle Andersson
I finally managed to understand why I got the problems described earlier. The "producer" uses "artemis-jms" while the deployed MDB uses "artemis-ra". Both components uses org.apache.activemq.artemis.core.client.impl.ClientSessionImpl.createQueue(…). However, "artemis-ra" tries to create the

Re: Questions regarding auto-creation

2023-10-11 Thread Calle Andersson
I tried to deploy a MDB to a Wildfly 28 server but I still get the same problems (however, the logging looks a little bit different on this server). This was added to standalone-full.xml: ...

Re: Questions regarding auto-creation

2023-10-10 Thread Justin Bertram
My only guess at this point is that there's bug or something in the client you're using. WildFly 20 shipped with ActiveMQ Artemis 2.10.1 which is over 4 years old now. That version of WildFly is itself over 3 years old. Any chance you could test on a more recent version of WildFly? Justin On

Re: Questions regarding auto-creation

2023-10-10 Thread Calle Andersson
Thanks for the reply, However, I had alread added it to my acceptor before my failing attempts:

Re: Questions regarding auto-creation

2023-10-10 Thread Justin Bertram
The fact that your client is running on WildFly is an important detail because it still uses the 1.x prefixes for JMS queues and topics (i.e. "jms.queue." and "jms.topic" respectively). Therefore, you should try adding this to your acceptor: anycastPrefix=jms.queue.;multicastPrefix=jms.topic.

Re: Questions regarding auto-creation

2023-10-10 Thread Calle Andersson
Thanks for the reply, I'm using ActiveMQ Artemis 2.31.0 as well. Thanks for the suggestion on using the "consumer" and "producer" commands (I didn't know of them). However, when using the commands everything worked as expected (using my intended Artemis configuration). I assume my problem

Re: Questions regarding auto-creation

2023-10-09 Thread Justin Bertram
gt; > Från: Calle Andersson > Skickat: torsdag, oktober 5, 2023 1:55:10 PM > Till: users@activemq.apache.org > Ämne: Questions regarding auto-creation > > Hi, > > I've just started to investigate how Artemis works and I have some > ques

Re: Questions regarding auto-creation

2023-10-09 Thread Calle Andersson
:10 PM Till: users@activemq.apache.org Ämne: Questions regarding auto-creation Hi, I've just started to investigate how Artemis works and I have some questions regarding auto-creation of addresses/queues. I don't want to allow any clients/servers (who sends and/or consumes messages) to be able

Questions regarding auto-creation

2023-10-05 Thread Calle Andersson
Hi, I've just started to investigate how Artemis works and I have some questions regarding auto-creation of addresses/queues. I don't want to allow any clients/servers (who sends and/or consumes messages) to be able to auto-create addresses or queues. However, I want the broker to be able