I am using the JMS point-to-point sampler of Jmeter to test the performance if a large number of JMS messages are posted on to a Queue.
The Jmeter at present creates a new QueueConnectionFactory and QueueConnection for each of the thread ( as per the number of threads provided) . I guess this is not how it happens via the front end, where a single connection factory handles different threads.
How do we make sure that it creates only one connection for all the threads? Is there any option in Jmeter? Or should we modify the code? It would be nice if someone could guide me in the right direction.