Reputation: 223
I am doing an IBM webpshere project and IBM MQ is reauired within this project, and now, We need to use Jmeter to send message to IBM MQ,
Anyone knows how to create the test plan in Jmeter for IBM MQ message test? link and test plan are preferred.
Note, IBM MQ is a little difference with standard JMS, it provides host, queue manager, server channel, port and queue name, how can we configure this within Jmeter?
Thanks in advance.
Upvotes: 5
Views: 19227
Reputation: 31
You can use mqmeter Java Sampler Request:
https://github.com/JoseLuisSR/mqmeter
I used it and works very well.
If you have questions or comments let me know.
Thanks.
Upvotes: 3
Reputation: 168082
Place libraries from step 1 to JMeter classpath using one of following approaches:
add the next line to user.properties file
user.classpath=/folder/with/mq/jars
JMeter restart will be required to pick the libraries up.
Upvotes: 6
Reputation: 7476
You should read the JMeter manual. It has a whole section on build a JMS test plan.
Upvotes: -2