Reputation: 3380
I'm trying to run a JMS load test from JMeter. The target server is ActiveMQ Artemis 2.16.0. I've configured the JMS Publisher as follows:
Although the Destination "queueDemo" has been created in the broker, the following error is reported in the Result Tree: "Response message: javax.naming.NameNotFoundException: queueDemo"
Am I missing something in my configuration? Aside from that, I have added the file artemis-jms-client-all-2.16.0.jar in the "lib" folder of JMeter.
Upvotes: 0
Views: 782
Reputation: 4328
Besides what @Justin mentioned, you can also package the jndi.properties in a jar file and place it into the "lib" folder of JMeter.
Upvotes: 1
Reputation: 35038
You should use the dynamicQueues/
prefix for your destination queueDemo
since you're not defining it in your JNDI properties, e.g.:
dynamicQueues/queueDemo
Read more about the ActiveMQ Artemis JNDI implementation and how to use it in the documentation.
Upvotes: 3